aboutsummaryrefslogtreecommitdiff
path: root/queen/command.h
diff options
context:
space:
mode:
authorGregory Montoir2004-04-03 17:58:58 +0000
committerGregory Montoir2004-04-03 17:58:58 +0000
commit8f6ae7973e895e40ecbf84afa95a0aa81508113b (patch)
treea29329c8cddf2c6daf3f07845033fb4266b4137e /queen/command.h
parent330cf4338327a7246f693192aa5c687d3eb5be79 (diff)
downloadscummvm-rg350-8f6ae7973e895e40ecbf84afa95a0aa81508113b.tar.gz
scummvm-rg350-8f6ae7973e895e40ecbf84afa95a0aa81508113b.tar.bz2
scummvm-rg350-8f6ae7973e895e40ecbf84afa95a0aa81508113b.zip
patch #910779 (with minor tweaks), fotaq hebrew support :
- reversed button captions in journal - reversed command text in pinnacle room - reverse order of lines in dialogue chooser thanks Ori Avtalion ! svn-id: r13447
Diffstat (limited to 'queen/command.h')
-rw-r--r--queen/command.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/queen/command.h b/queen/command.h
index 1b0cdc4cd9..2d7aff98dc 100644
--- a/queen/command.h
+++ b/queen/command.h
@@ -32,10 +32,12 @@ class QueenEngine;
struct CmdText {
+ CmdText(bool reversed, uint8 y, QueenEngine *vm);
+
void clear();
void display(uint8 color);
- void displayTemp(uint8 color, Verb v, const char *name = NULL);
- void displayTemp(uint8 color, const char *name);
+ void displayTemp(uint8 color, Verb v, const char *name = NULL, bool outlined = false);
+ void displayTemp(uint8 color, const char *name, bool outlined = false);
void setVerb(Verb v);
void addLinkWord(Verb v);
void addObject(const char *objName);
@@ -46,6 +48,7 @@ struct CmdText {
COMMAND_Y_POS = 151
};
+ uint8 _y;
bool _isReversed;
char _command[MAX_COMMAND_LEN];
QueenEngine *_vm;