From ac59693be26b4239aaaf380896a1e1b753172546 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 29 Jan 2009 05:26:12 +0000 Subject: A ton of code formatting fixes; also fixed warnings about single line loops like 'while(cond);' by inserting newlines svn-id: r36127 --- engines/tinsel/handle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/tinsel/handle.cpp') diff --git a/engines/tinsel/handle.cpp b/engines/tinsel/handle.cpp index b463244123..ba09675b3f 100644 --- a/engines/tinsel/handle.cpp +++ b/engines/tinsel/handle.cpp @@ -382,7 +382,7 @@ uint8 *LockMem(SCNHANDLE offset) { return (uint8 *)pH->pNode + sizeof(MEM_NODE) + (offset & OFFSETMASK); } else if (handle == cdPlayHandle) { // Must be in currently loaded/loadable range - if(offset < cdBaseHandle || offset >= cdTopHandle) + if (offset < cdBaseHandle || offset >= cdTopHandle) error("Overlapping (in time) CD-plays!"); if (pH->pNode->pBaseAddr && (pH->filesize & fLoaded)) @@ -394,7 +394,7 @@ uint8 *LockMem(SCNHANDLE offset) { MemoryReAlloc(pH->pNode, cdTopHandle-cdBaseHandle, DWM_MOVEABLE | DWM_DISCARDABLE); - if(pH->pNode->pBaseAddr == NULL) + if (pH->pNode->pBaseAddr == NULL) error("Out of memory"); LoadCDGraphData(pH); -- cgit v1.2.3