mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix non-GB build (fixes #1664)
This commit is contained in:
parent
2f643d7944
commit
3201c984e8
1
CHANGES
1
CHANGES
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue