Qt: Fix non-GB build (fixes #1664)

This commit is contained in:
Vicki Pfau 2020-02-09 15:56:42 -08:00
parent 2f643d7944
commit 3201c984e8
2 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,7 @@ Other fixes:
- Qt: Fix extraneous dialog (fixes mgba.io/i/1654)
- Qt: Fix window title not updating after shutting down game
- Qt: Fix GIF view not allowing manual filename entry
- Qt: Fix non-GB build (fixes mgba.io/i/1664)
- Util: Fix crash reading invalid ELFs
- VFS: Fix handle leak when double-mapping (fixes mgba.io/i/1659)
Misc:

View File

@ -16,11 +16,13 @@
using namespace QGBA;
#ifdef M_CORE_GB
MultiplayerController::Player::Player(CoreController* coreController, GBSIOLockstepNode* node)
: controller(coreController)
, gbNode(node)
{
}
#endif
#ifdef M_CORE_GBA
MultiplayerController::Player::Player(CoreController* coreController, GBASIOLockstepNode* node)