mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix build on older Qt
This commit is contained in:
parent
1b684ae2e3
commit
4fefa0c51a
|
@ -5,9 +5,9 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <QList>
|
||||||
#include <QMutex>
|
#include <QMutex>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QVector>
|
|
||||||
|
|
||||||
#include <mgba/core/lockstep.h>
|
#include <mgba/core/lockstep.h>
|
||||||
#ifdef M_CORE_GBA
|
#ifdef M_CORE_GBA
|
||||||
|
@ -77,7 +77,7 @@ private:
|
||||||
GBASIOLockstep m_gbaLockstep;
|
GBASIOLockstep m_gbaLockstep;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
QVector<Player> m_players;
|
QList<Player> m_players;
|
||||||
QMutex m_lock;
|
QMutex m_lock;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue