diff options
author | Matthew Hoops | 2012-03-20 14:18:57 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-03-20 14:49:16 -0400 |
commit | 71756bdf4eae5ba9cc3f329b85e894f04640aaef (patch) | |
tree | 40d464262da107ab5eed82f198685209161ebac1 /engines/lastexpress/game | |
parent | 03eba05b09e5c9e5a351f8111185934b92a3fed3 (diff) | |
parent | 3c3576a224b92c703b4e8ea20008ac8a069980dd (diff) | |
download | scummvm-rg350-71756bdf4eae5ba9cc3f329b85e894f04640aaef.tar.gz scummvm-rg350-71756bdf4eae5ba9cc3f329b85e894f04640aaef.tar.bz2 scummvm-rg350-71756bdf4eae5ba9cc3f329b85e894f04640aaef.zip |
Merge remote branch 'upstream/master' into pegasus
Diffstat (limited to 'engines/lastexpress/game')
-rw-r--r-- | engines/lastexpress/game/entities.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lastexpress/game/entities.cpp b/engines/lastexpress/game/entities.cpp index 894663dda6..f27087a609 100644 --- a/engines/lastexpress/game/entities.cpp +++ b/engines/lastexpress/game/entities.cpp @@ -615,9 +615,9 @@ void Entities::resetSequences(EntityIndex entityIndex) const { getData(entityIndex)->field_4A9 = false; getData(entityIndex)->field_4AA = false; - strcpy((char*)&getData(entityIndex)->sequenceNameCopy, ""); - strcpy((char*)&getData(entityIndex)->sequenceName, ""); - strcpy((char*)&getData(entityIndex)->sequenceName2, ""); + strcpy((char *)&getData(entityIndex)->sequenceNameCopy, ""); + strcpy((char *)&getData(entityIndex)->sequenceName, ""); + strcpy((char *)&getData(entityIndex)->sequenceName2, ""); getScenes()->resetQueue(); } |