aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/font.h
diff options
context:
space:
mode:
authorStrangerke2012-06-06 08:31:06 +0200
committerStrangerke2012-06-06 08:31:06 +0200
commit53e38106b73e6ad9e6f725857483bfd35e961326 (patch)
tree050863c3abfbeff77e661a8cdc8109dec767a712 /engines/tony/font.h
parentf1ac5d5acdbc0349850377619d8056be22871b42 (diff)
downloadscummvm-rg350-53e38106b73e6ad9e6f725857483bfd35e961326.tar.gz
scummvm-rg350-53e38106b73e6ad9e6f725857483bfd35e961326.tar.bz2
scummvm-rg350-53e38106b73e6ad9e6f725857483bfd35e961326.zip
TONY: Rename variables and functions in inventory.h
That fixes the regression in the credits
Diffstat (limited to 'engines/tony/font.h')
-rw-r--r--engines/tony/font.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tony/font.h b/engines/tony/font.h
index d39b9752a7..2e2b1724a9 100644
--- a/engines/tony/font.h
+++ b/engines/tony/font.h
@@ -60,7 +60,7 @@ private:
RMFontPrimitive() : RMGfxPrimitive() {}
RMFontPrimitive(RMGfxTask *task) : RMGfxPrimitive(task) {}
virtual ~RMFontPrimitive() { }
- virtual RMGfxPrimitive *Duplicate() {
+ virtual RMGfxPrimitive *duplicate() {
return new RMFontPrimitive(*this);
}
@@ -112,7 +112,7 @@ private:
public:
RMFontColor();
virtual ~RMFontColor();
- virtual void SetBaseColor(byte r, byte g, byte b);
+ virtual void setBaseColor(byte r, byte g, byte b);
};