diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/griffon/cutscenes.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/griffon/cutscenes.cpp b/engines/griffon/cutscenes.cpp index 2ffa333c3d..4936460264 100644 --- a/engines/griffon/cutscenes.cpp +++ b/engines/griffon/cutscenes.cpp @@ -188,7 +188,7 @@ void GriffonEngine::intro() { _secsingame = 0; _secStart = 0; - bool ldstop = false; + bool ldStop = false; int cnt = 0; float xofs = 0.0; float ld = 0.0; @@ -198,10 +198,10 @@ void GriffonEngine::intro() { ld += 4 * _fpsr; if ((int)ld > config.musicVol) ld = config.musicVol; - if (!ldstop) { + if (!ldStop) { setChannelVolume(_musicChannel, (int)ld); if ((int)ld == config.musicVol) - ldstop = true; + ldStop = true; } rc.left = -xofs; @@ -226,7 +226,7 @@ void GriffonEngine::intro() { drawString(_videoBuffer, story[i], x, yy, 4); } - if (yy < 10 && i == 47) + if (yy < 10 && i == 37) return; } |