Merge pull request #1652 from FreddyFunk/static-cast

configure_system: Fix compiler warning
This commit is contained in:
bunnei 2018-11-11 12:19:03 -08:00 committed by GitHub
commit 7474382266
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -114,8 +114,8 @@ struct Values {
// System
bool use_docked_mode;
bool enable_nfc;
int current_user;
int language_index;
s32 current_user;
s32 language_index;
// Controls
std::array<std::string, NativeButton::NumButtons> buttons;