diff options
Diffstat (limited to 'src/yuzu_cmd')
| -rw-r--r-- | src/yuzu_cmd/sdl_config.cpp | 1 | ||||
| -rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/yuzu_cmd/sdl_config.cpp b/src/yuzu_cmd/sdl_config.cpp index 995114510..6e0f254b6 100644 --- a/src/yuzu_cmd/sdl_config.cpp +++ b/src/yuzu_cmd/sdl_config.cpp | |||
| @@ -103,6 +103,7 @@ void SdlConfig::ReadSdlPlayerValues(const std::size_t player_index) { | |||
| 103 | if (profile_name.empty()) { | 103 | if (profile_name.empty()) { |
| 104 | // Use the global input config | 104 | // Use the global input config |
| 105 | player = Settings::values.players.GetValue(true)[player_index]; | 105 | player = Settings::values.players.GetValue(true)[player_index]; |
| 106 | player.profile_name = ""; | ||
| 106 | return; | 107 | return; |
| 107 | } | 108 | } |
| 108 | } | 109 | } |
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 3b321dad1..8a8cdbc44 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp | |||
| @@ -327,7 +327,9 @@ int main(int argc, char** argv) { | |||
| 327 | #endif | 327 | #endif |
| 328 | 328 | ||
| 329 | MicroProfileOnThreadCreate("EmuThread"); | 329 | MicroProfileOnThreadCreate("EmuThread"); |
| 330 | SCOPE_EXIT({ MicroProfileShutdown(); }); | 330 | SCOPE_EXIT { |
| 331 | MicroProfileShutdown(); | ||
| 332 | }; | ||
| 331 | 333 | ||
| 332 | Common::ConfigureNvidiaEnvironmentFlags(); | 334 | Common::ConfigureNvidiaEnvironmentFlags(); |
| 333 | 335 | ||