aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gui
diff options
context:
space:
mode:
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;
}
//----------------------------