diff options
author | D G Turner | 2017-01-12 05:59:50 +0000 |
---|---|---|
committer | D G Turner | 2017-01-12 05:59:50 +0000 |
commit | f87bf8a7b721e92287b6f896d34b5025551e97d5 (patch) | |
tree | 12d115d9d891c63ba13e24a794597120cd57b61b /engines | |
parent | 2615e95768cb5155ba26027a7dc1189b54524d6e (diff) | |
download | scummvm-rg350-f87bf8a7b721e92287b6f896d34b5025551e97d5.tar.gz scummvm-rg350-f87bf8a7b721e92287b6f896d34b5025551e97d5.tar.bz2 scummvm-rg350-f87bf8a7b721e92287b6f896d34b5025551e97d5.zip |
XEEN: Fix Unused Variable Compiler Warning.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/xeen/worldofxeen/clouds_cutscenes.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/xeen/worldofxeen/clouds_cutscenes.cpp b/engines/xeen/worldofxeen/clouds_cutscenes.cpp index 32209a766b..82a7d7c0ca 100644 --- a/engines/xeen/worldofxeen/clouds_cutscenes.cpp +++ b/engines/xeen/worldofxeen/clouds_cutscenes.cpp @@ -391,7 +391,8 @@ bool CloudsCutscenes::showCloudsEnding() { prec.clear(); // Show swirling vortex - SpriteResource vort[21], cast[6], darkLord[4]; + // TODO? SpriteResource vort[21]; + SpriteResource cast[6], 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) |