all repos — mgba @ 3201c984e8d62d72125263b743d59e95aa4a1649

mGBA Game Boy Advance Emulator

Qt: Fix non-GB build (fixes #1664)
Vicki Pfau vi@endrift.com
Sun, 09 Feb 2020 15:56:42 -0800
commit

3201c984e8d62d72125263b743d59e95aa4a1649

parent

2f643d79445b3cfb4d84ea6167d2c0bf005b855c

2 files changed, 3 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -32,6 +32,7 @@ - Qt: Fix toggled actions on gamepads (fixes mgba.io/i/1650)

- 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:
M src/platform/qt/MultiplayerController.cppsrc/platform/qt/MultiplayerController.cpp

@@ -16,11 +16,13 @@ #endif

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)