aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/teenagent.h
diff options
context:
space:
mode:
authorD G Turner2012-07-18 03:29:52 +0100
committerD G Turner2012-07-18 03:29:52 +0100
commit7c0b3e0167efa39070c8d4774db1ec03a5799e66 (patch)
treeb2c792d2617438d4e73b7629a9a4006230bfc16f /engines/teenagent/teenagent.h
parent567ca1e506dde8771c13c254df32aba776929e41 (diff)
downloadscummvm-rg350-7c0b3e0167efa39070c8d4774db1ec03a5799e66.tar.gz
scummvm-rg350-7c0b3e0167efa39070c8d4774db1ec03a5799e66.tar.bz2
scummvm-rg350-7c0b3e0167efa39070c8d4774db1ec03a5799e66.zip
TEENAGENT: Improve readability of displayMessage() calls.
Diffstat (limited to 'engines/teenagent/teenagent.h')
-rw-r--r--engines/teenagent/teenagent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/teenagent/teenagent.h b/engines/teenagent/teenagent.h
index 895558ab10..76de709711 100644
--- a/engines/teenagent/teenagent.h
+++ b/engines/teenagent/teenagent.h
@@ -99,8 +99,8 @@ public:
Common::String parseMessage(uint16 addr);
//event driven:
- void displayMessage(uint16 addr, byte color = 0xd1, uint16 position = 0);
- void displayMessage(const Common::String &str, byte color = 0xd1, uint16 position = 0);
+ void displayMessage(uint16 addr, byte color = 0xd1, uint16 x = 0, uint16 y = 0);
+ void displayMessage(const Common::String &str, byte color = 0xd1, uint16 x = 0, uint16 y = 0);
void displayAsyncMessage(uint16 addr, uint16 x, uint16 y, uint16 first_frame, uint16 last_frame, byte color = 0xd1);
void displayAsyncMessageInSlot(uint16 addr, byte slot, uint16 first_frame, uint16 last_frame, byte color = 0xd1);
void displayCredits(uint16 addr, uint16 timer = 0);