[Scummvm-git-logs] scummvm master -> f87bf8a7b721e92287b6f896d34b5025551e97d5
digitall
dgturner at iee.org
Thu Jan 12 06:53:06 CET 2017
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
f87bf8a7b7 XEEN: Fix Unused Variable Compiler Warning.
Commit: f87bf8a7b721e92287b6f896d34b5025551e97d5
https://github.com/scummvm/scummvm/commit/f87bf8a7b721e92287b6f896d34b5025551e97d5
Author: D G Turner (digitall at scummvm.org)
Date: 2017-01-12T05:59:50Z
Commit Message:
XEEN: Fix Unused Variable Compiler Warning.
Changed paths:
engines/xeen/worldofxeen/clouds_cutscenes.cpp
diff --git a/engines/xeen/worldofxeen/clouds_cutscenes.cpp b/engines/xeen/worldofxeen/clouds_cutscenes.cpp
index 32209a7..82a7d7c 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)
More information about the Scummvm-git-logs
mailing list