diff options
| author | Léo Lam <leo@leolam.fr> | 2022-03-15 16:00:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-15 16:00:28 +0100 |
| commit | e10967e918594b3f22dfb3da1d092fd3f58b8af6 (patch) | |
| tree | 9e6d7b55d4bb866cce135cace0d4d89d06e8ffdf /Source/Core/DolphinNoGUI/MainNoGUI.cpp | |
| parent | da6f86f381e1a78ed7bb0ab19af34d6ce5251257 (diff) | |
| parent | 37806472e16b931cbcc9fe3fac630333cd403863 (diff) | |
Merge pull request #10502 from Pokechu22/defer-gcadapter
GCAdapter: Defer initialization until MainWindow::InitControllers
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
| -rw-r--r-- | Source/Core/DolphinNoGUI/MainNoGUI.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 185bc447d9..cec4788f1c 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -30,6 +30,8 @@ #endif #include "UICommon/UICommon.h" +#include "InputCommon/GCAdapter.h" + #include "VideoCommon/RenderBase.h" #include "VideoCommon/VideoBackendBase.h" @@ -226,6 +228,7 @@ int main(int argc, char* argv[]) UICommon::SetUserDirectory(user_directory); UICommon::Init(); + GCAdapter::Init(); s_platform = GetPlatform(options); if (!s_platform || !s_platform->Init()) |
