summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorGravatar wwylele2016-11-30 11:32:09 +0200
committerGravatar wwylele2016-12-07 20:52:42 +0200
commit84e78790ab3f3e8883493b18946e97328d921774 (patch)
tree31b000e21876310ccd91e1746c86b643908b5a27 /src/core/settings.h
parentMerge pull request #2232 from wwylele/other-save (diff)
downloadyuzu-84e78790ab3f3e8883493b18946e97328d921774.tar.gz
yuzu-84e78790ab3f3e8883493b18946e97328d921774.tar.xz
yuzu-84e78790ab3f3e8883493b18946e97328d921774.zip
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}