diff options
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index 7150d97555..73dc3061fe 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -112,6 +112,8 @@ static const std::array<const char*, NumAnalogs> mapping = {{ struct Values { // System bool use_docked_mode; + std::string username; + int language_index; // Controls std::array<std::string, NativeButton::NumButtons> buttons; @@ -137,6 +139,13 @@ struct Values { std::string log_filter; + bool use_dev_keys; + + // Audio + std::string sink_id; + std::string audio_device_id; + float volume; + // Debugging bool use_gdbstub; u16 gdbstub_port; |