diff options
author | Eugene Sandulenko | 2013-09-28 23:57:39 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-09-28 23:57:39 +0300 |
commit | 9220d331e2761a7f5a69a6a68617fce4b7fece18 (patch) | |
tree | dc9988554c2f47cfe7b193b451bed42c9adc927a /engines/sword25 | |
parent | 5cb881be12fdffc5f4073fd874723b306c27a347 (diff) | |
download | scummvm-rg350-9220d331e2761a7f5a69a6a68617fce4b7fece18.tar.gz scummvm-rg350-9220d331e2761a7f5a69a6a68617fce4b7fece18.tar.bz2 scummvm-rg350-9220d331e2761a7f5a69a6a68617fce4b7fece18.zip |
SWORD25: Make Amiga compiler happier
Diffstat (limited to 'engines/sword25')
-rw-r--r-- | engines/sword25/gfx/panel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/gfx/panel.cpp b/engines/sword25/gfx/panel.cpp index b9bb8b087d..9b7fe82914 100644 --- a/engines/sword25/gfx/panel.cpp +++ b/engines/sword25/gfx/panel.cpp @@ -104,7 +104,7 @@ bool Panel::unpersist(InputPersistenceBlock &reader) { result &= RenderObject::unpersist(reader); - uint color; + uint32 color; reader.read(color); setColor(color); |