Merge pull request #9600 from Bonta0/mgba-pr

Full GBA Controllers Integration with mGBA
This commit is contained in:
JMC47 2021-07-21 02:36:43 -04:00 committed by GitHub
commit a1e806ed76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
99 changed files with 4327 additions and 412 deletions

View file

@ -56,3 +56,7 @@ void Host_YieldToUI()
void Host_TitleChanged()
{
}
std::unique_ptr<GBAHostInterface> Host_CreateGBAHost(std::weak_ptr<HW::GBA::Core> core)
{
return nullptr;
}