summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorGravatar bunnei2016-12-29 22:09:01 -0500
committerGravatar GitHub2016-12-29 22:09:01 -0500
commitf556d6ee90aae2d81cd9770c0b3259ac88ae8fe4 (patch)
tree63472a7c6dbd7bc9f77ba503800afdaf36982da5 /src/core/settings.h
parentMerge pull request #2367 from JayFoxRox/lighting-lut-quickfix (diff)
parentConfig: auto-select region and language (diff)
downloadyuzu-f556d6ee90aae2d81cd9770c0b3259ac88ae8fe4.tar.gz
yuzu-f556d6ee90aae2d81cd9770c0b3259ac88ae8fe4.tar.xz
yuzu-f556d6ee90aae2d81cd9770c0b3259ac88ae8fe4.zip
Merge pull request #2240 from wwylele/auto-region
Config: auto-select region and language
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index db4c8fada..4e7a4b1be 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -110,5 +110,9 @@ struct Values {
110 u16 gdbstub_port; 110 u16 gdbstub_port;
111} extern values; 111} extern values;
112 112
113// a special value for Values::region_value indicating that citra will automatically select a region
114// value to fit the region lockout info of the game
115static constexpr int REGION_VALUE_AUTO_SELECT = -1;
116
113void Apply(); 117void Apply();
114} 118}