Core: Add GBA host interface

This commit is contained in:
Bonta
2021-07-04 13:09:46 +02:00
parent d849d56695
commit 2d744da68c
6 changed files with 41 additions and 0 deletions

View File

@ -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"));