diff options
author | Max Horn | 2003-05-30 00:56:32 +0000 |
---|---|---|
committer | Max Horn | 2003-05-30 00:56:32 +0000 |
commit | 997f6564c6b1ebb9e1c489a83be45ed1a77aeb47 (patch) | |
tree | 9f3ff74ff42676e98409071bfcc64283b4accea0 /scumm | |
parent | 691e1f390aae2c797cd0f5ed04ff1136cf8c8f19 (diff) | |
download | scummvm-rg350-997f6564c6b1ebb9e1c489a83be45ed1a77aeb47.tar.gz scummvm-rg350-997f6564c6b1ebb9e1c489a83be45ed1a77aeb47.tar.bz2 scummvm-rg350-997f6564c6b1ebb9e1c489a83be45ed1a77aeb47.zip |
removed debug output (checked that in by accident)
svn-id: r8127
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/string.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp index 08796a49aa..da0600f61f 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -762,14 +762,10 @@ void Scumm::loadLanguageBundle() { } else { return; } -printf("Looking for language.bnd..."); - if(file.isOpen() == false) { _existLanguageFile = false; - printf(" not found!\n"); return; } - printf(" found!\n"); size = file.size(); _languageBuffer = (char *)calloc(1, size+1); |