diff options
| author | JMC47 <JMC4789@gmail.com> | 2021-07-21 02:36:43 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-21 02:36:43 -0400 |
| commit | a1e806ed76e6746259a730a5db82052b53f084f1 (patch) | |
| tree | e2246fc40dab5a0ae32bad834fbc96fe5533a8e5 /Source/Core/DolphinNoGUI/MainNoGUI.cpp | |
| parent | b515786c8dd94aac73e59003d9c232bd319ae1bd (diff) | |
| parent | b8f0e97c025dc7a50c7c729185195b3577321987 (diff) | |
Merge pull request #9600 from Bonta0/mgba-pr
Full GBA Controllers Integration with mGBA
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
| -rw-r--r-- | Source/Core/DolphinNoGUI/MainNoGUI.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 31ddb591bb..26b0e69a22 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -119,6 +119,11 @@ void Host_TitleChanged() #endif } +std::unique_ptr<GBAHostInterface> Host_CreateGBAHost(std::weak_ptr<HW::GBA::Core> core) +{ + return nullptr; +} + static std::unique_ptr<Platform> GetPlatform(const optparse::Values& options) { std::string platform_name = static_cast<const char*>(options.get("platform")); |
