TUCKER: fix #2627967 - Slow Walking

The waitForTimer calls in fade*Palette are actually
duplicated ; mainLoop already handles timing.
This commit is contained in:
Gregory Montoir 2011-02-17 14:35:11 +01:00
parent 399b59a583
commit da77a057d1

View File

@ -952,7 +952,6 @@ void TuckerEngine::fadeOutPalette(int colorsCount) {
}
_system->getPaletteManager()->setPalette(pal, 0, colorsCount);
_system->updateScreen();
waitForTimer(1);
}
void TuckerEngine::fadeInPalette(int colorsCount) {
@ -966,7 +965,6 @@ void TuckerEngine::fadeInPalette(int colorsCount) {
}
_system->getPaletteManager()->setPalette(pal, 0, colorsCount);
_system->updateScreen();
waitForTimer(1);
}
void TuckerEngine::fadePaletteColor(int color, int step) {