diff options
author | Max Horn | 2010-11-16 09:54:11 +0000 |
---|---|---|
committer | Max Horn | 2010-11-16 09:54:11 +0000 |
commit | c734fc2b3eb327fd442e9a7a62beeec964f2830b (patch) | |
tree | 08a8256d835fd40d562338d2218c557c4d4b3754 | |
parent | 1dbf8d73d56052654522cf4076490090a41f336b (diff) | |
download | scummvm-rg350-c734fc2b3eb327fd442e9a7a62beeec964f2830b.tar.gz scummvm-rg350-c734fc2b3eb327fd442e9a7a62beeec964f2830b.tar.bz2 scummvm-rg350-c734fc2b3eb327fd442e9a7a62beeec964f2830b.zip |
TINSEL: Remove unnecessary 'static'
svn-id: r54263
-rw-r--r-- | engines/tinsel/rince.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/rince.cpp b/engines/tinsel/rince.cpp index 67735ad6cb..6ea1dd7464 100644 --- a/engines/tinsel/rince.cpp +++ b/engines/tinsel/rince.cpp @@ -853,7 +853,7 @@ void T2MoverProcess(CORO_PARAM, const void *param) { */ void MoverProcessCreate(int X, int Y, int id, PMOVER pMover) { if (TinselV2) { - static MAINIT iStruct; + MAINIT iStruct; iStruct.X = X; iStruct.Y = Y; iStruct.pMover = pMover; |