diff options
author | Filippos Karapetis | 2010-01-05 14:17:47 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-01-05 14:17:47 +0000 |
commit | 45bf6fc0d7bb440208b21f9201a80e92db328df7 (patch) | |
tree | 183f2890f0f993bd3b1524bc178d879aa3f98bc8 | |
parent | b2fd2a83105518a1a0a9a99f10879fb5eab14c47 (diff) | |
download | scummvm-rg350-45bf6fc0d7bb440208b21f9201a80e92db328df7.tar.gz scummvm-rg350-45bf6fc0d7bb440208b21f9201a80e92db328df7.tar.bz2 scummvm-rg350-45bf6fc0d7bb440208b21f9201a80e92db328df7.zip |
Removed a leftover unused hack from the old graphics code
svn-id: r47026
-rw-r--r-- | engines/sci/graphics/animate.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/sci/graphics/animate.h b/engines/sci/graphics/animate.h index a71e0a769a..28b356a38d 100644 --- a/engines/sci/graphics/animate.h +++ b/engines/sci/graphics/animate.h @@ -41,15 +41,13 @@ enum ViewSignals { kSignalForceUpdate = 0x0040, kSignalRemoveView = 0x0080, kSignalFrozen = 0x0100, - kSignalExtraActor = 0x0200, // unused by us, defines all actors that may be included into the background if speed to slow + kSignalExtraActor = 0x0200, // unused by us, defines all actors that may be included into the background if speed is too slow kSignalHitObstacle = 0x0400, // used in the actor movement code by kDoBresen() kSignalDoesntTurn = 0x0800, // used by _k_dirloop() to determine if an actor can turn or not kSignalNoCycler = 0x1000, // unused by us kSignalIgnoreHorizon = 0x2000, // unused by us, defines actor that can ignore horizon kSignalIgnoreActor = 0x4000, - kSignalDisposeMe = 0x8000, - - kSignalStopUpdHack = 0x20000000 // View has been stop-updated (again???) - a hack used by the old GUI code only, for dynamic views + kSignalDisposeMe = 0x8000 }; class Gfx; |