Skip to content

Commit

Permalink
KYRA: (EOB) - fix eob2 sequence text fading
Browse files Browse the repository at this point in the history
  • Loading branch information
athrxx authored and Johannes Schickel committed Dec 26, 2011
1 parent 36d85a3 commit 4e4f416
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion engines/kyra/screen_eob.cpp
Expand Up @@ -978,7 +978,7 @@ void Screen_Eob::fadeTextColor(Palette *pal, int color1, int rate) {

for (bool loop = true; loop; ) {
loop = true;
uint32 end = _system->getMillis() + 1;
uint32 end = _system->getMillis() + _vm->tickLength();

loop = false;
for (int ii = 0; ii < 3; ii++) {
Expand Down
2 changes: 1 addition & 1 deletion engines/kyra/sequences_darkmoon.cpp
Expand Up @@ -1172,7 +1172,7 @@ void DarkmoonSequenceHelper::fadeText() {
if (_vm->skipFlag() || _vm->shouldQuit())
return;

_screen->fadeTextColor(_palettes[0], 255, 2);
_screen->fadeTextColor(_palettes[0], 255, 8);
_screen->clearCurDim();
}

Expand Down

0 comments on commit 4e4f416

Please sign in to comment.