SCI32: Update screen on frameout, instead of in the event loop

This commit is contained in:
Colin Snover 2016-08-26 19:50:13 -05:00
parent 63345b2b70
commit d0517f515e
5 changed files with 8 additions and 3 deletions

View File

@ -236,7 +236,7 @@ reg_t kGetEvent(EngineState *s, int argc, reg_t *argv) {
// check bugs #3058865 and #3127824
if (s->_gameIsBenchmarking) {
// Game is benchmarking, don't add a delay
} else {
} else if (getSciVersion() < SCI_VERSION_2) {
g_system->delayMillis(10);
}

View File

@ -370,7 +370,9 @@ SciEvent EventManager::getSciEvent(uint32 mask) {
SciEvent event = { SCI_EVENT_NONE, 0, 0, Common::Point() };
#endif
EventManager::updateScreen();
if (getSciVersion() < SCI_VERSION_2) {
updateScreen();
}
// Get all queued events from graphics driver
do {

View File

@ -122,6 +122,7 @@ void GfxCursor32::drawToHardware(const DrawRegion &source) {
byte *sourcePixel = source.data + (sourceYOffset * source.rect.width()) + sourceXOffset;
g_system->copyRectToScreen(sourcePixel, source.rect.width(), drawRect.left, drawRect.top, drawRect.width(), drawRect.height());
g_system->updateScreen();
}
void GfxCursor32::unhide() {

View File

@ -1108,6 +1108,7 @@ void GfxFrameout::mergeToShowList(const Common::Rect &drawRect, RectList &showLi
void GfxFrameout::showBits() {
if (!_showList.size()) {
g_system->updateScreen();
return;
}
@ -1146,6 +1147,7 @@ void GfxFrameout::showBits() {
_cursor->donePainting();
_showList.clear();
g_system->updateScreen();
}
void GfxFrameout::alterVmap(const Palette &palette1, const Palette &palette2, const int8 style, const int8 *const styleRanges) {

View File

@ -295,7 +295,7 @@ void GfxPalette32::updateHardware(const bool updateScreen) {
g_system->getPaletteManager()->setPalette(bpal, 0, 256);
if (updateScreen) {
g_sci->getEventManager()->updateScreen();
g_system->updateScreen();
}
}