Skip to content

Commit

Permalink
TUCKER: fix #2627967 - Slow Walking
Browse files Browse the repository at this point in the history
The waitForTimer calls in fade*Palette are actually
duplicated ; mainLoop already handles timing.
  • Loading branch information
cyxx committed Feb 18, 2011
1 parent 399b59a commit da77a05
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions engines/tucker/tucker.cpp
Expand Up @@ -952,7 +952,6 @@ void TuckerEngine::fadeOutPalette(int colorsCount) {
}
_system->getPaletteManager()->setPalette(pal, 0, colorsCount);
_system->updateScreen();
waitForTimer(1);
}

void TuckerEngine::fadeInPalette(int colorsCount) {
Expand All @@ -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) {
Expand Down

1 comment on commit da77a05

@fingolfin
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very nice, I see you fixed a ton of bugs in TUCKER. Could you now please also update the NEWS file to mention these fixes? Your choice whether to just write "Fixed many bugs" or whether to give a detailed list (or a mix, if some bugs are more important than others).

Please sign in to comment.