Qt: Fix remaining write to drawContext

This commit is contained in:
Jeffrey Pfau 2016-01-16 10:59:38 -08:00
parent 7e6f9f2092
commit 3fef28db19
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ void GameController::openGame(bool biosOnly) {
}
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)) {
m_gameOpen = false;