diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-04-28 12:22:41 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-04-28 12:22:41 -0400 |
commit | d95605cd24fa65f5bb83148aa4830457c623ee98 (patch) | |
tree | e9cf42ff30ed2b1f01f8d9e4158dfedac0c955a6 /src/yuzu/main.cpp | |
parent | b096ec68cdbf6f1064a8b6b855489d38c3e59f6a (diff) |
yuzu: main: Silence type conversion warning on MSVC
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 5f6cdc0c6f..39bdf186de 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -349,7 +349,7 @@ GMainWindow::GMainWindow() continue; } - Settings::values.current_user = selected_user; + Settings::values.current_user = static_cast<s32>(selected_user); continue; } |