projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19d14a0
)
More debug markers before debug statements in willowisp.cpp
author
Tobias Markus
<tobbi@mozilla-uk.org>
Tue, 25 Feb 2014 12:22:33 +0000
(13:22 +0100)
committer
Tobias Markus
<tobbi@mozilla-uk.org>
Tue, 25 Feb 2014 12:22:33 +0000
(13:22 +0100)
src/badguy/willowisp.cpp
patch
|
blob
|
history
diff --git
a/src/badguy/willowisp.cpp
b/src/badguy/willowisp.cpp
index
8e582a9
..
8f8746a
100644
(file)
--- 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<scripting::WillOWisp*> (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);
}