diff options
author | Paul Gilbert | 2017-11-18 16:45:41 -0500 |
---|---|---|
committer | Paul Gilbert | 2017-11-18 16:45:41 -0500 |
commit | 33b76cf5d0e10756317cbd09cc0020b2f538a0d3 (patch) | |
tree | 895b19afed1122045cc07f70ab3e0044bc595ae1 /engines/xeen/worldofxeen | |
parent | 34d19ff4245ecc1273a109568b029229c6865ab3 (diff) | |
download | scummvm-rg350-33b76cf5d0e10756317cbd09cc0020b2f538a0d3.tar.gz scummvm-rg350-33b76cf5d0e10756317cbd09cc0020b2f538a0d3.tar.bz2 scummvm-rg350-33b76cf5d0e10756317cbd09cc0020b2f538a0d3.zip |
XEEN: Fixes for Character class
Diffstat (limited to 'engines/xeen/worldofxeen')
-rw-r--r-- | engines/xeen/worldofxeen/clouds_cutscenes.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/xeen/worldofxeen/clouds_cutscenes.cpp b/engines/xeen/worldofxeen/clouds_cutscenes.cpp index 82a7d7c0ca..b827e5135b 100644 --- a/engines/xeen/worldofxeen/clouds_cutscenes.cpp +++ b/engines/xeen/worldofxeen/clouds_cutscenes.cpp @@ -119,8 +119,7 @@ bool CloudsCutscenes::showCloudsIntro() { screen.vertMerge(yScroll); if (yCtr < 160) { xeen.draw(screen, 0); - } - else if (yCtr < 100) { + } else if (yCtr < 100) { xeen.draw(screen, 0); if (++xeenCtr < 14) xeen1.draw(screen, xeenCtr); @@ -392,7 +391,7 @@ bool CloudsCutscenes::showCloudsEnding() { // Show swirling vortex // TODO? SpriteResource vort[21]; - SpriteResource cast[6], darkLord[4]; + SpriteResource cast[16], darkLord[4]; for (int idx = 1; idx < 7; ++idx) cast[idx - 1].load(Common::String::format("cast%02u.end", idx)); for (int idx = 1; idx < 4; ++idx) |