mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-27 20:28:27 +00:00
stop gcc crying about unused variable
svn-id: r6821
This commit is contained in:
parent
e79058b2a1
commit
85c9a9c39d
@ -370,7 +370,8 @@ void SmushPlayer::handleImuseAction(Chunk &b) {
|
||||
checkBlock(b, TYPE_IACT, 8);
|
||||
debug(6, "SmushPlayer::handleImuseAction()");
|
||||
|
||||
int code = b.getWord();
|
||||
int code;
|
||||
code = b.getWord();
|
||||
int flags = b.getWord();
|
||||
int unknown = b.getShort();
|
||||
int track_flags = b.getWord();
|
||||
|
Loading…
Reference in New Issue
Block a user