From 09a01e4cbeada86167d83608cd0dcd77d7a0168f Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Wed, 24 Sep 2003 06:40:23 +0000 Subject: Replaced abs() with ABS and BOOL with bool, plus some minor cleanups. svn-id: r10391 --- sword2/resman.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sword2/resman.cpp') diff --git a/sword2/resman.cpp b/sword2/resman.cpp index 943fc9f24f..7335f20353 100644 --- a/sword2/resman.cpp +++ b/sword2/resman.cpp @@ -1438,7 +1438,7 @@ void resMan::GetCd(int cd) { do { if (offNetwork == 1) - done = TRUE; + done = true; else { index = 0; while (cdDrives[index] != 0 && !done && index < 24) { @@ -1450,10 +1450,10 @@ void resMan::GetCd(int cd) { if (!scumm_stricmp(sCDName,CD1_LABEL)) { if (cd == CD1) - done = TRUE; + done = true; } else if (!scumm_stricmp(sCDName,CD2_LABEL)) { if (cd == CD2) - done = TRUE; + done = true; } index++; } -- cgit v1.2.3