Qt: Fix build on older Qt

This commit is contained in:
Vicki Pfau 2022-11-28 14:25:04 -08:00
parent 1b684ae2e3
commit 4fefa0c51a
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}; };