summaryrefslogtreecommitdiff
path: root/lib/cdabstract.cpp
diff options
context:
space:
mode:
authorPixel <Pixel>2002-10-31 23:20:34 +0000
committerPixel <Pixel>2002-10-31 23:20:34 +0000
commit419a05e177eb34815d6f8fad64654376805f1552 (patch)
tree70c91766c3014bbbbfe256c1dbeff470d43d0a12 /lib/cdabstract.cpp
parent0ecc8766fc348d3c35c7a34d9695461b8a485383 (diff)
Bleh
Diffstat (limited to 'lib/cdabstract.cpp')
-rw-r--r--lib/cdabstract.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/cdabstract.cpp b/lib/cdabstract.cpp
index 083aa4d..b79960f 100644
--- a/lib/cdabstract.cpp
+++ b/lib/cdabstract.cpp
@@ -3,9 +3,13 @@
#include "cdreader.h"
Handle * open_iso(const String & nom) {
+#ifdef USE_CDREADER
if (nom.extract(0, 2).toupper() == "CD:") {
return new cdreader(nom.extract(3));
} else {
+#else
+ {
+#endif
return new Input(nom);
}
}