From: Tobias Markus Date: Tue, 25 Feb 2014 12:22:33 +0000 (+0100) Subject: More debug markers before debug statements in willowisp.cpp X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=b68ea04f34c5a0ec258f09b67993dc0d54edbe8c;p=supertux.git More debug markers before debug statements in willowisp.cpp --- diff --git a/src/badguy/willowisp.cpp b/src/badguy/willowisp.cpp index 8e582a90e..8f8746a3e 100644 --- a/src/badguy/willowisp.cpp +++ b/src/badguy/willowisp.cpp @@ -283,7 +283,7 @@ WillOWisp::expose(HSQUIRRELVM vm, SQInteger table_idx) if (name.empty()) return; - std::cout << "Expose me '" << name << "'\n"; + std::cout << "[DEBUG] Expose me '" << name << "'\n"; scripting::WillOWisp* _this = static_cast (this); expose_object(vm, table_idx, _this, name); } @@ -294,7 +294,7 @@ WillOWisp::unexpose(HSQUIRRELVM vm, SQInteger table_idx) if (name.empty()) return; - std::cout << "UnExpose me '" << name << "'\n"; + std::cout << "[DEBUG] UnExpose me '" << name << "'\n"; scripting::unexpose_object(vm, table_idx, name); }