fix dumb include path shit.

This commit is contained in:
Arisotura
2020-04-27 15:59:52 +02:00
parent 690f9f3874
commit d9c55a4f1f
2 changed files with 7 additions and 2 deletions

View File

@ -208,6 +208,7 @@ printf("emu thread start: %d\n", EmuRunning);
uiGLEnd(GLContext);
}
uiAreaQueueRedrawAll(MainDrawArea);*/
mainWindow->update();
/*bool fastforward = HotkeyDown(HK_FastForward);
@ -292,6 +293,7 @@ printf("emu thread start: %d\n", EmuRunning);
uiGLEnd(GLContext);
}
uiAreaQueueRedrawAll(MainDrawArea);*/
mainWindow->update();
}
//if (Screen_UseGL) uiGLMakeContextCurrent(NULL);
@ -359,7 +361,10 @@ void MainWindowPanel::paintEvent(QPaintEvent* event)
{
QPainter painter(this);
//painter.
// fill background
painter.fillRect(event->rect(), QColor::fromRgb(0, 0, 0));
painter.fillRect(0, 0, 256, 192, QColor::fromRgb(0, 255, 255));
}