lua_extensions: Fix wrong repr function name
This commit is contained in:
parent
7fa061c941
commit
6ff608c012
@ -93,7 +93,7 @@ int l_debug_print(lua::State* L) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
int n = lua::gettop(L);
|
int n = lua::gettop(L);
|
||||||
std::cout << "debug_print(" << std::endl;
|
std::cout << "debug.print(" << std::endl;
|
||||||
for (int i = 1; i <= n; ++i) {
|
for (int i = 1; i <= n; ++i) {
|
||||||
addIndentation(1);
|
addIndentation(1);
|
||||||
debugPrint(i, 1, false);
|
debugPrint(i, 1, false);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user