diff options
author | Eugene Sandulenko | 2013-09-28 23:28:19 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-09-28 23:28:19 +0300 |
commit | 86550cdc3c19d7a75f634073b942440d72520dcd (patch) | |
tree | 488c4e62b02e44f81071a9f9b7349f618d043764 /engines/sword25/gfx | |
parent | 9a1ddf0deef80fd598fe64e96f1180e265cbc124 (diff) | |
download | scummvm-rg350-86550cdc3c19d7a75f634073b942440d72520dcd.tar.gz scummvm-rg350-86550cdc3c19d7a75f634073b942440d72520dcd.tar.bz2 scummvm-rg350-86550cdc3c19d7a75f634073b942440d72520dcd.zip |
SWORD25: Further fixes for Amiga
Diffstat (limited to 'engines/sword25/gfx')
-rw-r--r-- | engines/sword25/gfx/animationtemplateregistry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/gfx/animationtemplateregistry.cpp b/engines/sword25/gfx/animationtemplateregistry.cpp index 7437e4b8d4..4cefe24b18 100644 --- a/engines/sword25/gfx/animationtemplateregistry.cpp +++ b/engines/sword25/gfx/animationtemplateregistry.cpp @@ -77,13 +77,13 @@ bool AnimationTemplateRegistry::unpersist(InputPersistenceBlock &reader) { delete _handle2PtrMap.begin()->_value; // Anzahl an BS_AnimationTemplates einlesen. - uint animationTemplateCount; + uint32 animationTemplateCount; reader.read(animationTemplateCount); // Alle gespeicherten BS_AnimationTemplates wieder herstellen. for (uint i = 0; i < animationTemplateCount; ++i) { // Handle lesen. - uint handle; + uint32 handle; reader.read(handle); // BS_AnimationTemplate wieder herstellen. |