mirror of https://github.com/mgba-emu/mgba.git
Remove unused member in GameController
This commit is contained in:
parent
ae534aff74
commit
d5c0dffb29
|
@ -11,7 +11,6 @@ using namespace QGBA;
|
||||||
GameController::GameController(QObject* parent)
|
GameController::GameController(QObject* parent)
|
||||||
: QObject(parent)
|
: QObject(parent)
|
||||||
, m_drawContext(new uint32_t[256 * 256])
|
, m_drawContext(new uint32_t[256 * 256])
|
||||||
, m_audioContext(nullptr)
|
|
||||||
, m_activeKeys(0)
|
, m_activeKeys(0)
|
||||||
, m_rom(nullptr)
|
, m_rom(nullptr)
|
||||||
{
|
{
|
||||||
|
|
|
@ -63,7 +63,6 @@ private:
|
||||||
void updateKeys();
|
void updateKeys();
|
||||||
|
|
||||||
uint32_t* m_drawContext;
|
uint32_t* m_drawContext;
|
||||||
AudioDevice* m_audioContext;
|
|
||||||
GBAThread m_threadContext;
|
GBAThread m_threadContext;
|
||||||
GBAVideoSoftwareRenderer* m_renderer;
|
GBAVideoSoftwareRenderer* m_renderer;
|
||||||
int m_activeKeys;
|
int m_activeKeys;
|
||||||
|
|
Loading…
Reference in New Issue