aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/ps2/ps2-fs.h
diff options
context:
space:
mode:
authorMax Lingua2014-01-23 18:15:42 -0500
committerMax Lingua2014-01-23 18:34:58 -0500
commit5e36716be5dc55d2fbf0d417b03e065bd09f7946 (patch)
treec46d9dbf2281eeb303014d9dc5a468ffb67f6457 /backends/fs/ps2/ps2-fs.h
parent6487c362a1909b10886ee95f4f91109a7808fd33 (diff)
downloadscummvm-rg350-5e36716be5dc55d2fbf0d417b03e065bd09f7946.tar.gz
scummvm-rg350-5e36716be5dc55d2fbf0d417b03e065bd09f7946.tar.bz2
scummvm-rg350-5e36716be5dc55d2fbf0d417b03e065bd09f7946.zip
PS2: Made it quieter unless -DLOGORRHEIC is set
Diffstat (limited to 'backends/fs/ps2/ps2-fs.h')
-rw-r--r--backends/fs/ps2/ps2-fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/fs/ps2/ps2-fs.h b/backends/fs/ps2/ps2-fs.h
index df78f9f68a..8573ac271a 100644
--- a/backends/fs/ps2/ps2-fs.h
+++ b/backends/fs/ps2/ps2-fs.h
@@ -69,12 +69,12 @@ public:
virtual Common::String getPath() const { return _path; }
virtual bool exists() const {
- // printf("%s : is %d\n", _path.c_str(), _isHere);
+ // dbg_printf("%s : is %d\n", _path.c_str(), _isHere);
return _isHere;
}
virtual bool isDirectory() const {
- // printf("%s : dir %d\n", _path.c_str(), _isDirectory);
+ // dbg_printf("%s : dir %d\n", _path.c_str(), _isDirectory);
return _isDirectory;
}