summaryrefslogtreecommitdiff
path: root/src/client/GameSave.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/GameSave.cpp')
-rw-r--r--src/client/GameSave.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/GameSave.cpp b/src/client/GameSave.cpp
index 761cbea..a6a1b89 100644
--- a/src/client/GameSave.cpp
+++ b/src/client/GameSave.cpp
@@ -836,8 +836,8 @@ void GameSave::readOPS(char * data, int dataLength)
if(fieldDescriptor & 0x1000)
{
if(i+1 >= partsDataLen) goto fail;
- particles[newIndex].tmp |= (((unsigned)partsData[i++]) << 16);
particles[newIndex].tmp |= (((unsigned)partsData[i++]) << 24);
+ particles[newIndex].tmp |= (((unsigned)partsData[i++]) << 16);
}
}
}