diff options
| author | Willem Jan Palenstijn | 2009-10-03 23:01:22 +0000 | 
|---|---|---|
| committer | Willem Jan Palenstijn | 2009-10-03 23:01:22 +0000 | 
| commit | a8c4d70d3e70addfd3fffe92178a4b41cb72889a (patch) | |
| tree | 1b4c8b114d7f58b236119b180fd3fd69d38321b1 | |
| parent | f61bf4f97a208735dc42320e7ca072ca7fc5dd58 (diff) | |
| download | scummvm-rg350-a8c4d70d3e70addfd3fffe92178a4b41cb72889a.tar.gz scummvm-rg350-a8c4d70d3e70addfd3fffe92178a4b41cb72889a.tar.bz2 scummvm-rg350-a8c4d70d3e70addfd3fffe92178a4b41cb72889a.zip  | |
SCI: attempt to fix wii/dc build error
svn-id: r44579
| -rw-r--r-- | engines/sci/gui/gui_memmgr.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/gui/gui_memmgr.cpp b/engines/sci/gui/gui_memmgr.cpp index 708ebaeeb4..c063fb99e5 100644 --- a/engines/sci/gui/gui_memmgr.cpp +++ b/engines/sci/gui/gui_memmgr.cpp @@ -299,7 +299,7 @@ void heapDump() {  	debug("Total %db used, %db free\nEnd Dump", szUsed, szFree);  }  //---------------------------- -inline byte *heap2Ptr(HEAPHANDLE ptr) { +byte *heap2Ptr(HEAPHANDLE ptr) {  	return (ptr >= HEAP_START) ? (byte *)(_heap + ptr) : NULL;  }  //----------------------------  | 
