diff options
author | D G Turner | 2017-04-16 06:09:16 +0100 |
---|---|---|
committer | D G Turner | 2017-04-16 06:09:16 +0100 |
commit | 51edb208e2a823e16e8e1013bf658b1fe55be432 (patch) | |
tree | 0a07c57ca011f27c20cf67cd3aaff0c629540726 /engines | |
parent | 93c2ca3c94fc97dd32b03f486244064216a80019 (diff) | |
download | scummvm-rg350-51edb208e2a823e16e8e1013bf658b1fe55be432.tar.gz scummvm-rg350-51edb208e2a823e16e8e1013bf658b1fe55be432.tar.bz2 scummvm-rg350-51edb208e2a823e16e8e1013bf658b1fe55be432.zip |
TITANIC: Fix GCC Unused Variable Warning.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/star_control/star_closeup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/star_control/star_closeup.cpp b/engines/titanic/star_control/star_closeup.cpp index cf20c8c768..0e37670075 100644 --- a/engines/titanic/star_control/star_closeup.cpp +++ b/engines/titanic/star_control/star_closeup.cpp @@ -482,7 +482,7 @@ bool CStarCloseup::setupEntry(int width, int height, int index, float val) { const float FACTOR = 2.0 * M_PI / 360.0; int d1Count, d2Count, size3, height1; - int ctr, ctr2, idx, offset, incr; + int ctr, ctr2, idx, incr; float vx, vy, yVal, degrees, cosVal, sinVal, angle; d1Count = width * (2 * height - 3); |