aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/text.h
diff options
context:
space:
mode:
authorD G Turner2013-09-29 00:45:43 +0100
committerD G Turner2013-09-29 00:45:43 +0100
commit03965ba855c510eecb0dfd653aef0cc9b67541dc (patch)
tree83e0737af8bdbc44c35bf97e405612159323a8f5 /engines/sword25/gfx/text.h
parent9220d331e2761a7f5a69a6a68617fce4b7fece18 (diff)
downloadscummvm-rg350-03965ba855c510eecb0dfd653aef0cc9b67541dc.tar.gz
scummvm-rg350-03965ba855c510eecb0dfd653aef0cc9b67541dc.tar.bz2
scummvm-rg350-03965ba855c510eecb0dfd653aef0cc9b67541dc.zip
SWORD25: Even more fixes for Amiga OS 4 compilation.
Diffstat (limited to 'engines/sword25/gfx/text.h')
-rw-r--r--engines/sword25/gfx/text.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/gfx/text.h b/engines/sword25/gfx/text.h
index 94e7a30865..e82c24d93c 100644
--- a/engines/sword25/gfx/text.h
+++ b/engines/sword25/gfx/text.h
@@ -100,7 +100,7 @@ public:
@brief Setzt die Farbe des Textes.
@param Color eine 24-Bit RGB Farbe, die die Farbe des Textes festlegt.
*/
- void setColor(uint modulationColor);
+ void setColor(uint32 modulationColor);
/**
@brief Gibt den Alphawert des Textes zurück.
@@ -142,7 +142,7 @@ private:
Text(RenderObjectPtr<RenderObject> parentPtr);
Text(InputPersistenceBlock &reader, RenderObjectPtr<RenderObject> parentPtr, uint handle);
- uint _modulationColor;
+ uint32 _modulationColor;
Common::String _font;
Common::String _text;
bool _autoWrap;