diff options
author | Max Horn | 2010-11-16 09:53:08 +0000 |
---|---|---|
committer | Max Horn | 2010-11-16 09:53:08 +0000 |
commit | ada9c9af608f1af9d00289f4aa2b7be868e2944f (patch) | |
tree | 28dc73ad14dc1a4d91115e19bd02fcaf16e46e62 /engines | |
parent | a9b3dccaaaf62f6780335f630c016844ac10ff0a (diff) | |
download | scummvm-rg350-ada9c9af608f1af9d00289f4aa2b7be868e2944f.tar.gz scummvm-rg350-ada9c9af608f1af9d00289f4aa2b7be868e2944f.tar.bz2 scummvm-rg350-ada9c9af608f1af9d00289f4aa2b7be868e2944f.zip |
TINSEL: Removed unnecessary 'static'
svn-id: r54261
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tinsel/tinlib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/tinlib.cpp b/engines/tinsel/tinlib.cpp index dea60802d1..70ea8b8556 100644 --- a/engines/tinsel/tinlib.cpp +++ b/engines/tinsel/tinlib.cpp @@ -2588,7 +2588,7 @@ static void Scroll(CORO_PARAM, EXTREME extreme, int xp, int yp, int xIter, int y PlayfieldGetPos(FIELD_WORLD, &Loffset, &Toffset); } while (Loffset != _ctx->x || Toffset != _ctx->y); } else if (TinselV2 && myEscape) { - static SCROLL_MONITOR sm; + SCROLL_MONITOR sm; // Scroll is escapable even though we're not waiting for it sm.x = _ctx->x; |