diff options
| author | Bonta <40473493+Bonta0@users.noreply.github.com> | 2021-07-04 13:09:46 +0200 |
|---|---|---|
| committer | Bonta <40473493+Bonta0@users.noreply.github.com> | 2021-07-13 16:42:49 +0200 |
| commit | 2d744da68c31814ee3d5d3696aaa4d6bf5955a21 (patch) | |
| tree | 8c96156f610bbd81c180ee623cd91159790f0430 /Source/Core/DolphinNoGUI/MainNoGUI.cpp | |
| parent | d849d5669509eacae4a1d9fd995af77b53159df7 (diff) | |
Core: Add GBA host interface
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")); |
