aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/font.h
diff options
context:
space:
mode:
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);
};