aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/text.h
diff options
context:
space:
mode:
authorMartin Kiewitz2016-02-03 01:41:32 +0100
committerMartin Kiewitz2016-02-03 01:41:32 +0100
commit702b66a49d27bb683e43083e6bf5efacf7cdd996 (patch)
tree3bc2e32e6d98e04f4f9219fef92ac095c618650f /engines/agi/text.h
parent8271058a4598e25096fe305f2c0beb7d2613e178 (diff)
downloadscummvm-rg350-702b66a49d27bb683e43083e6bf5efacf7cdd996.tar.gz
scummvm-rg350-702b66a49d27bb683e43083e6bf5efacf7cdd996.tar.bz2
scummvm-rg350-702b66a49d27bb683e43083e6bf5efacf7cdd996.zip
AGI: Make inner loop handlers consistent
Diffstat (limited to 'engines/agi/text.h')
-rw-r--r--engines/agi/text.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/agi/text.h b/engines/agi/text.h
index 1de82e56fa..1e9b971a4f 100644
--- a/engines/agi/text.h
+++ b/engines/agi/text.h
@@ -132,7 +132,7 @@ public:
void print(int16 textNr);
bool messageBox(const char *textPtr);
- void messageBox_CharPress(uint16 newKey);
+ void messageBox_KeyPress(uint16 newKey);
bool _messageBoxCancelled;
@@ -180,7 +180,7 @@ public:
void promptRow_Set(int16 row);
int16 promptRow_Get();
- void promptCharPress(int16 newChar);
+ void promptKeyPress(uint16 newKey);
void promptCancelLine();
void promptEchoLine();
void promptRedraw();
@@ -199,7 +199,7 @@ public:
int16 stringGetMaxLen();
void stringSet(const char *text);
void stringEdit(int16 stringMaxLen);
- void stringCharPress(int16 newChar);
+ void stringKeyPress(uint16 newKey);
void stringRememberForAutoComplete(bool entered = false); // for auto-completion
char *stringPrintf(const char *originalText);