aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorMax Horn2003-09-20 20:01:32 +0000
committerMax Horn2003-09-20 20:01:32 +0000
commitf539bd72e7191ccb639ed32f4ab920fd057cc9c5 (patch)
treebdac70c19b84af272d30e7b5647c5e4ab85d3ec0 /simon
parent23373b01233687eb36ced32b7cee77a8fe81e989 (diff)
downloadscummvm-rg350-f539bd72e7191ccb639ed32f4ab920fd057cc9c5.tar.gz
scummvm-rg350-f539bd72e7191ccb639ed32f4ab920fd057cc9c5.tar.bz2
scummvm-rg350-f539bd72e7191ccb639ed32f4ab920fd057cc9c5.zip
fixed AMD64 warning
svn-id: r10341
Diffstat (limited to 'simon')
-rw-r--r--simon/simon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 959cbfd9af..e9894df1f8 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -537,7 +537,7 @@ byte *SimonEngine::allocateItem(uint size) {
}
void SimonEngine::alignTableMem() {
- if ((uint32)_tablesheap_ptr & 3) {
+ if ((unsigned long)_tablesheap_ptr & 3) {
_tablesheap_ptr += 2;
_tablesheap_curpos += 2;
}