aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-05-24 11:44:19 +0200
committerEinar Johan Trøan Sømåen2012-06-02 13:02:51 +0200
commita53fa953a4869bed8e9aebe86ca6343e79225bf6 (patch)
tree6dc47e76010881539c90b59bf7a7f3309c44c8f4 /engines/wintermute
parent753781f9725507049e8050ccfed6f8ecf291c540 (diff)
downloadscummvm-rg350-a53fa953a4869bed8e9aebe86ca6343e79225bf6.tar.gz
scummvm-rg350-a53fa953a4869bed8e9aebe86ca6343e79225bf6.tar.bz2
scummvm-rg350-a53fa953a4869bed8e9aebe86ca6343e79225bf6.zip
WINTERMUTE: Don't use unsigned datatypes in rects.
Diffstat (limited to 'engines/wintermute')
-rw-r--r--engines/wintermute/wintypes.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/wintermute/wintypes.h b/engines/wintermute/wintypes.h
index e3dd615063..c96b109d07 100644
--- a/engines/wintermute/wintypes.h
+++ b/engines/wintermute/wintypes.h
@@ -55,16 +55,16 @@ typedef const char *LPCSTR, *PCSTR;
typedef PCSTR *PZPCSTR;
typedef struct tagRECT {
- uint32 left;
- uint32 top;
- uint32 right;
- uint32 bottom;
+ int32 left;
+ int32 top;
+ int32 right;
+ int32 bottom;
} RECT, *LPRECT;
typedef struct tagPOINT {
- uint32 x;
- uint32 y;
+ int32 x;
+ int32 y;
} POINT, *LPPOINT;