aboutsummaryrefslogtreecommitdiff
path: root/sword1/memman.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-12-19 14:07:12 +0000
committerTorbjörn Andersson2003-12-19 14:07:12 +0000
commitb179e8f6ec6d24f6b46a1b9e14e46ad777374d94 (patch)
tree065c7947ff9419920e95ab8610f6a0c8a1d1513c /sword1/memman.cpp
parentb7a5d9720791bd112730d1384c7c7cf94a40e381 (diff)
downloadscummvm-rg350-b179e8f6ec6d24f6b46a1b9e14e46ad777374d94.tar.gz
scummvm-rg350-b179e8f6ec6d24f6b46a1b9e14e46ad777374d94.tar.bz2
scummvm-rg350-b179e8f6ec6d24f6b46a1b9e14e46ad777374d94.zip
Whitespace changes
svn-id: r11760
Diffstat (limited to 'sword1/memman.cpp')
-rw-r--r--sword1/memman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword1/memman.cpp b/sword1/memman.cpp
index 82e5fd7b8c..bee3c736ae 100644
--- a/sword1/memman.cpp
+++ b/sword1/memman.cpp
@@ -42,7 +42,7 @@ void MemMan::alloc(BsMemHandle *bsMem, uint32 pSize, uint16 pCond) {
warning("%d Bytes alloced as FREEABLE.", pSize); // why should one want to alloc mem if it can be freed?
addToFreeList(bsMem);
} else if (bsMem->next || bsMem->prev) // it's in our _freeAble list, remove it from there
- removeFromFreeList(bsMem);
+ removeFromFreeList(bsMem);
checkMemoryUsage();
}