mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-05 00:36:57 +00:00
TUCKER: fix #2627967 - Slow Walking
The waitForTimer calls in fade*Palette are actually duplicated ; mainLoop already handles timing.
This commit is contained in:
parent
399b59a583
commit
da77a057d1
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user