diff options
author | Matthew Hoops | 2010-07-22 14:29:00 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-07-22 14:29:00 +0000 |
commit | ede85a539afae551a0e325b92968c2532bd1d358 (patch) | |
tree | 8d3b6bca4f9192788b5ee4f8432c00fcd44f0082 /engines/sci/graphics | |
parent | debe58cd3871882caec7188dc51707bf616ffe35 (diff) | |
download | scummvm-rg350-ede85a539afae551a0e325b92968c2532bd1d358.tar.gz scummvm-rg350-ede85a539afae551a0e325b92968c2532bd1d358.tar.bz2 scummvm-rg350-ede85a539afae551a0e325b92968c2532bd1d358.zip |
Silence gcc warning
svn-id: r51143
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r-- | engines/sci/graphics/frameout.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp index bbfbd37ebe..a83611396a 100644 --- a/engines/sci/graphics/frameout.cpp +++ b/engines/sci/graphics/frameout.cpp @@ -128,8 +128,6 @@ void GfxFrameout::kernelFrameout() { // Allocate enough space for all screen items FrameoutEntry *itemData = (FrameoutEntry *)malloc(_screenItems.size() * sizeof(FrameoutEntry)); - const SciGameId gameId = g_sci->getGameId(); - for (Common::List<reg_t>::iterator it = _planes.begin(); it != _planes.end(); it++) { reg_t planeObject = *it; uint16 planePriority = readSelectorValue(_segMan, planeObject, SELECTOR(priority)); |