summaryrefslogtreecommitdiffstats
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2018-01-12 05:56:15 +0100
committerJames Rowe <jroweboy@gmail.com>2018-01-13 03:11:05 +0100
commit18ca3ca751ad1596524e473f0ad56253ad4b006f (patch)
tree5e34ebea9c5385a9649603ee1f92f59f92c063ba /src/core/settings.h
parentGet yuzu sdl to start compiling (diff)
downloadyuzu-18ca3ca751ad1596524e473f0ad56253ad4b006f.tar
yuzu-18ca3ca751ad1596524e473f0ad56253ad4b006f.tar.gz
yuzu-18ca3ca751ad1596524e473f0ad56253ad4b006f.tar.bz2
yuzu-18ca3ca751ad1596524e473f0ad56253ad4b006f.tar.lz
yuzu-18ca3ca751ad1596524e473f0ad56253ad4b006f.tar.xz
yuzu-18ca3ca751ad1596524e473f0ad56253ad4b006f.tar.zst
yuzu-18ca3ca751ad1596524e473f0ad56253ad4b006f.zip
Diffstat (limited to '')
-rw-r--r--src/core/settings.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index ebf072cff..f2c88e5d4 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -10,13 +10,6 @@
namespace Settings {
-enum class LayoutOption {
- Default,
- SingleScreen,
- LargeScreen,
- SideScreen,
-};
-
namespace NativeButton {
enum Values {
A,
@@ -78,9 +71,6 @@ enum class CpuCore {
};
struct Values {
- // CheckNew3DS
- bool is_new_3ds;
-
// Controls
std::array<std::string, NativeButton::NumButtons> buttons;
std::array<std::string, NativeAnalog::NumAnalogs> analogs;
@@ -93,54 +83,20 @@ struct Values {
// Data Storage
bool use_virtual_sd;
- // System Region
- int region_value;
-
// Renderer
- bool use_hw_renderer;
- bool use_shader_jit;
float resolution_factor;
- bool use_vsync;
bool toggle_framelimit;
- LayoutOption layout_option;
- bool swap_screen;
- bool custom_layout;
- u16 custom_top_left;
- u16 custom_top_top;
- u16 custom_top_right;
- u16 custom_top_bottom;
- u16 custom_bottom_left;
- u16 custom_bottom_top;
- u16 custom_bottom_right;
- u16 custom_bottom_bottom;
-
float bg_red;
float bg_green;
float bg_blue;
std::string log_filter;
- // Audio
- std::string sink_id;
- bool enable_audio_stretching;
- std::string audio_device_id;
-
// Debugging
bool use_gdbstub;
u16 gdbstub_port;
-
- // WebService
- bool enable_telemetry;
- std::string telemetry_endpoint_url;
- std::string verify_endpoint_url;
- std::string citra_username;
- std::string citra_token;
} extern values;
-// a special value for Values::region_value indicating that citra will automatically select a region
-// value to fit the region lockout info of the game
-static constexpr int REGION_VALUE_AUTO_SELECT = -1;
-
void Apply();
} // namespace Settings