Remove unused member in GameController

This commit is contained in:
Jeffrey Pfau 2014-07-21 23:08:31 -07:00
parent ae534aff74
commit d5c0dffb29
2 changed files with 0 additions and 2 deletions

View File

@ -11,7 +11,6 @@ using namespace QGBA;
GameController::GameController(QObject* parent)
: QObject(parent)
, m_drawContext(new uint32_t[256 * 256])
, m_audioContext(nullptr)
, m_activeKeys(0)
, m_rom(nullptr)
{

View File

@ -63,7 +63,6 @@ private:
void updateKeys();
uint32_t* m_drawContext;
AudioDevice* m_audioContext;
GBAThread m_threadContext;
GBAVideoSoftwareRenderer* m_renderer;
int m_activeKeys;