mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix remaining write to drawContext
This commit is contained in:
parent
7e6f9f2092
commit
3fef28db19
|
@ -339,7 +339,7 @@ void GameController::openGame(bool biosOnly) {
|
||||||
}
|
}
|
||||||
|
|
||||||
m_inputController->recalibrateAxes();
|
m_inputController->recalibrateAxes();
|
||||||
memset(m_drawContext, 0xF8, 1024 * VIDEO_HORIZONTAL_PIXELS);
|
memset(m_drawContext, 0xF8, VIDEO_VERTICAL_PIXELS * VIDEO_HORIZONTAL_PIXELS * 4);
|
||||||
|
|
||||||
if (!GBAThreadStart(&m_threadContext)) {
|
if (!GBAThreadStart(&m_threadContext)) {
|
||||||
m_gameOpen = false;
|
m_gameOpen = false;
|
||||||
|
|
Loading…
Reference in New Issue