diff options
| author | 2018-11-11 12:19:03 -0800 | |
|---|---|---|
| committer | 2018-11-11 12:19:03 -0800 | |
| commit | 7474382266ef62324dfccc3bb35d866073f90240 (patch) | |
| tree | 13934f0da0804d27405947c23e10bd72cc8837c9 /src/core | |
| parent | Merge pull request #1664 from FreddyFunk/cast2 (diff) | |
| parent | configure_system: Fix compiler warning (diff) | |
| download | yuzu-7474382266ef62324dfccc3bb35d866073f90240.tar.gz yuzu-7474382266ef62324dfccc3bb35d866073f90240.tar.xz yuzu-7474382266ef62324dfccc3bb35d866073f90240.zip | |
Merge pull request #1652 from FreddyFunk/static-cast
configure_system: Fix compiler warning
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index b5aeff29b..a8954647f 100644 --- a/src/core/settings.h +++ b/src/core/settings.h | |||
| @@ -114,8 +114,8 @@ struct Values { | |||
| 114 | // System | 114 | // System |
| 115 | bool use_docked_mode; | 115 | bool use_docked_mode; |
| 116 | bool enable_nfc; | 116 | bool enable_nfc; |
| 117 | int current_user; | 117 | s32 current_user; |
| 118 | int language_index; | 118 | s32 language_index; |
| 119 | 119 | ||
| 120 | // Controls | 120 | // Controls |
| 121 | std::array<std::string, NativeButton::NumButtons> buttons; | 121 | std::array<std::string, NativeButton::NumButtons> buttons; |