mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
fixed AMD64 warning
svn-id: r10341
This commit is contained in:
parent
23373b0123
commit
f539bd72e7
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user