diff options
author | Torbjörn Andersson | 2003-11-11 15:16:41 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-11-11 15:16:41 +0000 |
commit | c16d20c72fd7f4ff801e1421488d3a41a6a6a4a6 (patch) | |
tree | 0d897f51502d15c77733496f8afccc7fa44b6ae1 | |
parent | ce619b254ed2ff70c43e20006fc755b3c5eb785d (diff) | |
download | scummvm-rg350-c16d20c72fd7f4ff801e1421488d3a41a6a6a4a6.tar.gz scummvm-rg350-c16d20c72fd7f4ff801e1421488d3a41a6a6a4a6.tar.bz2 scummvm-rg350-c16d20c72fd7f4ff801e1421488d3a41a6a6a4a6.zip |
Slight refinement to the last patch. There are four different possibilities
for which CD to look for: 0 (both CDs - not used?), 1, 2 and 3 (not used?)
svn-id: r11263
-rw-r--r-- | sword2/resman.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sword2/resman.cpp b/sword2/resman.cpp index 62eac3c7fd..db2a069753 100644 --- a/sword2/resman.cpp +++ b/sword2/resman.cpp @@ -744,6 +744,9 @@ void ResourceManager::printConsoleClusters(void) { case CD2: Debug_Printf("CD 2\n"); break; + default: + Debug_Printf("CD 3? Huh?!\n"); + break; } } else Debug_Printf("HD\n"); |