aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/statusba.h
diff options
context:
space:
mode:
authoryinsimei2017-07-10 21:44:14 +0200
committerEugene Sandulenko2017-07-13 18:27:45 +0200
commitf8e1fe006433124f7cd82691d37011127297ec42 (patch)
tree851e6982a5bd16c2b78c5d881a56bfb0ccc17b6d /engines/sludge/statusba.h
parentcc727710b45a2d3d3c51139b76976c352d9e8449 (diff)
downloadscummvm-rg350-f8e1fe006433124f7cd82691d37011127297ec42.tar.gz
scummvm-rg350-f8e1fe006433124f7cd82691d37011127297ec42.tar.bz2
scummvm-rg350-f8e1fe006433124f7cd82691d37011127297ec42.zip
SLUDGE: replace int types to scummvm defined ones
Diffstat (limited to 'engines/sludge/statusba.h')
-rw-r--r--engines/sludge/statusba.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sludge/statusba.h b/engines/sludge/statusba.h
index 03c61cfa6c..b6c0c7822f 100644
--- a/engines/sludge/statusba.h
+++ b/engines/sludge/statusba.h
@@ -31,7 +31,7 @@ struct statusBar {
struct statusStuff {
statusBar *firstStatusBar;
- unsigned short alignStatus;
+ uint16 alignStatus;
int litStatus;
int statusX, statusY;
int statusR, statusG, statusB;
@@ -44,8 +44,8 @@ void setStatusBar(char *txt);
void clearStatusBar();
void addStatusBar();
void killLastStatus();
-void statusBarColour(unsigned char r, unsigned char g, unsigned char b);
-void statusBarLitColour(unsigned char r, unsigned char g, unsigned char b);
+void statusBarColour(byte r, byte g, byte b);
+void statusBarLitColour(byte r, byte g, byte b);
void setLitStatus(int i);
const char *statusBarText();
void positionStatus(int, int);