mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix non-GB build
This commit is contained in:
parent
3f61f68f22
commit
61a657afcf
|
@ -18,6 +18,9 @@
|
||||||
#include <mgba/internal/gb/sio/lockstep.h>
|
#include <mgba/internal/gb/sio/lockstep.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
struct GBSIOLockstepNode;
|
||||||
|
struct GBASIOLockstepNode;
|
||||||
|
|
||||||
namespace QGBA {
|
namespace QGBA {
|
||||||
|
|
||||||
class GameController;
|
class GameController;
|
||||||
|
|
|
@ -22,8 +22,10 @@
|
||||||
|
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
|
#ifdef M_CORE_GB
|
||||||
QList<enum GBModel> OverrideView::s_gbModelList;
|
QList<enum GBModel> OverrideView::s_gbModelList;
|
||||||
QList<enum GBMemoryBankControllerType> OverrideView::s_mbcList;
|
QList<enum GBMemoryBankControllerType> OverrideView::s_mbcList;
|
||||||
|
#endif
|
||||||
|
|
||||||
OverrideView::OverrideView(GameController* controller, ConfigController* config, QWidget* parent)
|
OverrideView::OverrideView(GameController* controller, ConfigController* config, QWidget* parent)
|
||||||
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
|
|
Loading…
Reference in New Issue