summaryrefslogtreecommitdiffstats
path: root/src/core/settings.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/settings.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index fe47c364f..b6c75531f 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -89,7 +89,7 @@ struct Values {
// Renderer
bool use_hw_renderer;
bool use_shader_jit;
- bool use_scaled_resolution;
+ float resolution_factor;
bool use_vsync;
bool toggle_framelimit;
@@ -105,6 +105,7 @@ struct Values {
// Audio
std::string sink_id;
bool enable_audio_stretching;
+ std::string audio_device_id;
// Camera
std::array<std::string, Service::CAM::NumCameras> camera_name;
@@ -115,5 +116,9 @@ struct Values {
u16 gdbstub_port;
} 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();
}