diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-11-19 15:39:09 -0500 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-11-28 19:22:18 -0500 |
commit | 3de05726eb9d6bd8637134eb37ce8072c4289cd6 (patch) | |
tree | ca2d6dfe81cb75c45114a7037b05ed94cc9ecf12 /src/yuzu/main.cpp | |
parent | b1b20ad84a5e966bb13f01de037bbfe88ac985cc (diff) |
config: Custom profile detection fixes
Also only reads/writes applicable configs for the custom profiles.
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index e0c3537887..21983a7998 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1669,6 +1669,7 @@ void GMainWindow::BootGame(const QString& filename, u64 program_id, std::size_t ? Common::FS::PathToUTF8String(file_path.filename()) : fmt::format("{:016X}", title_id); Config per_game_config(config_file_name, Config::ConfigType::PerGameConfig); + system->HIDCore().ReloadInputDevices(); system->ApplySettings(); } |