aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gui
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2009-10-03 23:01:22 +0000
committerWillem Jan Palenstijn2009-10-03 23:01:22 +0000
commita8c4d70d3e70addfd3fffe92178a4b41cb72889a (patch)
tree1b4c8b114d7f58b236119b180fd3fd69d38321b1 /engines/sci/gui
parentf61bf4f97a208735dc42320e7ca072ca7fc5dd58 (diff)
downloadscummvm-rg350-a8c4d70d3e70addfd3fffe92178a4b41cb72889a.tar.gz
scummvm-rg350-a8c4d70d3e70addfd3fffe92178a4b41cb72889a.tar.bz2
scummvm-rg350-a8c4d70d3e70addfd3fffe92178a4b41cb72889a.zip
SCI: attempt to fix wii/dc build error
svn-id: r44579
Diffstat (limited to 'engines/sci/gui')
-rw-r--r--engines/sci/gui/gui_memmgr.cpp2
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;
}
//----------------------------