Files
eden/src/core/settings.h
T

43 lines
754 B
C++
Raw Normal View History

2014-09-12 17:06:13 -07:00
// Copyright 2014 Citra Emulator Project
2014-12-16 21:38:14 -08:00
// Licensed under GPLv2 or any later version
2014-09-12 17:06:13 -07:00
// Refer to the license.txt file included.
#pragma once
2014-12-06 20:00:08 -02:00
#include <string>
2014-09-12 17:06:13 -07:00
namespace Settings {
struct Values {
// Controls
2014-09-12 17:06:13 -07:00
int pad_a_key;
int pad_b_key;
int pad_x_key;
int pad_y_key;
int pad_l_key;
int pad_r_key;
int pad_start_key;
int pad_select_key;
int pad_home_key;
int pad_dup_key;
int pad_ddown_key;
int pad_dleft_key;
int pad_dright_key;
int pad_sup_key;
int pad_sdown_key;
int pad_sleft_key;
int pad_sright_key;
// Core
int cpu_core;
int gpu_refresh_rate;
int frame_skip;
// Data Storage
bool use_virtual_sd;
2014-10-27 17:18:28 -04:00
2014-12-06 20:00:08 -02:00
std::string log_filter;
2014-09-12 17:06:13 -07:00
} extern values;
}