all repos — mgba @ 1f4403243d0c74f229474680969e2e0ecd871d61

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

1f4403243d0c74f229474680969e2e0ecd871d61

parent

c68ee4daee9050fc44d606774030819e32b01fb9

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

jump to
M CHANGESCHANGES

@@ -21,6 +21,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)