aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/lol.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-05-19 01:13:29 +0000
committerJohannes Schickel2009-05-19 01:13:29 +0000
commit7561bd9dfbf325a15d330caef00438cafc9f7ab3 (patch)
tree9dc0d331d5bf4fdc3f234e28b529bc643519bfe0 /engines/kyra/lol.cpp
parent136fcb3810c556c3a5d0e71ac1cf878c7538eb50 (diff)
downloadscummvm-rg350-7561bd9dfbf325a15d330caef00438cafc9f7ab3.tar.gz
scummvm-rg350-7561bd9dfbf325a15d330caef00438cafc9f7ab3.tar.bz2
scummvm-rg350-7561bd9dfbf325a15d330caef00438cafc9f7ab3.zip
Remov lots of superfluous debug output.
svn-id: r40715
Diffstat (limited to 'engines/kyra/lol.cpp')
-rw-r--r--engines/kyra/lol.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp
index 21b44f99f6..029018ae39 100644
--- a/engines/kyra/lol.cpp
+++ b/engines/kyra/lol.cpp
@@ -598,7 +598,6 @@ Common::Error LoLEngine::go() {
#pragma mark - Initialization
void LoLEngine::preInit() {
- debugC(9, kDebugLevelMain, "LoLEngine::preInit()");
_res->loadPakFile("GENERAL.PAK");
if (_flags.isTalkie)
@@ -619,7 +618,6 @@ void LoLEngine::preInit() {
}
void LoLEngine::loadItemIconShapes() {
- debugC(9, kDebugLevelMain, "LoLEngine::loadItemIconShapes()");
if (_itemIconShapes) {
for (int i = 0; i < _numItemIconShapes; i++)
@@ -687,7 +685,6 @@ uint8 *LoLEngine::getItemIconShapePtr(int index) {
}
int LoLEngine::mainMenu() {
- debugC(9, kDebugLevelMain, "LoLEngine::mainMenu()");
bool hasSave = saveFileLoadable(0);
@@ -925,7 +922,6 @@ void LoLEngine::update() {
#pragma mark - Localization
char *LoLEngine::getLangString(uint16 id) {
- debugC(9, kDebugLevelMain, "LoLEngine::getLangString(0x%.04X)", id);
if (id == 0xFFFF)
return 0;
@@ -958,7 +954,6 @@ char *LoLEngine::getLangString(uint16 id) {
}
uint8 *LoLEngine::getTableEntry(uint8 *buffer, uint16 id) {
- debugC(9, kDebugLevelMain, "LoLEngine::getTableEntry(%p, %d)", (const void *)buffer, id);
if (!buffer)
return 0;
@@ -1803,7 +1798,6 @@ void LoLEngine::snd_stopSpeech(bool setFlag) {
}
void LoLEngine::snd_playSoundEffect(int track, int volume) {
- debugC(9, kDebugLevelMain | kDebugLevelSound, "LoLEngine::snd_playSoundEffect(%d, %d)", track, volume);
if (track == 1 && (_lastSfxTrack == -1 || _lastSfxTrack == 1))
return;