diff options
author | Filippos Karapetis | 2010-08-20 07:38:33 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-08-20 07:38:33 +0000 |
commit | 849ccc9eab10e74886f20ed8d407783676bc6230 (patch) | |
tree | db3a4ae6b131b78f6ade99894eced8c3a153f822 | |
parent | 4625defaa46b438a0e70365773f9c54e887149b0 (diff) | |
download | scummvm-rg350-849ccc9eab10e74886f20ed8d407783676bc6230.tar.gz scummvm-rg350-849ccc9eab10e74886f20ed8d407783676bc6230.tar.bz2 scummvm-rg350-849ccc9eab10e74886f20ed8d407783676bc6230.zip |
SCI: Changed a warning into a debugC
svn-id: r52220
-rw-r--r-- | engines/sci/engine/kfile.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/kfile.cpp b/engines/sci/engine/kfile.cpp index 39c32ccc68..e6036f3be5 100644 --- a/engines/sci/engine/kfile.cpp +++ b/engines/sci/engine/kfile.cpp @@ -744,7 +744,8 @@ reg_t kFileIOOpen(EngineState *s, int argc, reg_t *argv) { } if (name.empty()) { - warning("Attempted to open a file with an empty filename"); + // Happens many times during KQ1 (e.g. when typing something) + debugC(2, kDebugLevelFile, "Attempted to open a file with an empty filename"); return SIGNAL_REG; } debugC(2, kDebugLevelFile, "kFileIO(open): %s, 0x%x", name.c_str(), mode); |