aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2013-06-21 18:04:59 +0200
committerStrangerke2013-06-21 18:04:59 +0200
commit57504102797b2c356a83a0b3d2af382e8c8eb58e (patch)
tree80fe18ccaf25fb764cbc6d84f7df7f45b8e4f065
parent178386f1c48d04f07b2552a253a6b8151dc481b9 (diff)
downloadscummvm-rg350-57504102797b2c356a83a0b3d2af382e8c8eb58e.tar.gz
scummvm-rg350-57504102797b2c356a83a0b3d2af382e8c8eb58e.tar.bz2
scummvm-rg350-57504102797b2c356a83a0b3d2af382e8c8eb58e.zip
AVALANCHE: Add some detail in debug strings
-rw-r--r--engines/avalanche/avalanche.cpp2
-rw-r--r--engines/avalanche/avalot.cpp5
2 files changed, 2 insertions, 5 deletions
diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp
index c644b30028..b9b1b0f581 100644
--- a/engines/avalanche/avalanche.cpp
+++ b/engines/avalanche/avalanche.cpp
@@ -162,7 +162,7 @@ namespace Avalanche {
}
void AvalancheEngine::run(Common::String what, bool with_jsb, bool with_bflight, elm how) {
- warning("STUB: run()");
+ warning("STUB: run(%s)", what.c_str());
// Probably there'll be no need of this function, as all *.AVX-es will become classes.
}
diff --git a/engines/avalanche/avalot.cpp b/engines/avalanche/avalot.cpp
index 337f896db9..de218811c1 100644
--- a/engines/avalanche/avalot.cpp
+++ b/engines/avalanche/avalot.cpp
@@ -35,10 +35,7 @@ namespace Avalanche {
Avalot::Avalot() {}
void Avalot::run(Common::String arg) {
-
-
-
- warning("STUB: Avalot::run()");
+ warning("STUB: Avalot::run(%s)", arg.c_str());
}
} // End of namespace Avalanche