fixed AMD64 warning

svn-id: r10341
This commit is contained in:
Max Horn 2003-09-20 20:01:32 +00:00
parent 23373b0123
commit f539bd72e7

View File

@ -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;
}