lua_extensions: Fix wrong repr function name

This commit is contained in:
REDxEYE 2024-08-20 15:14:27 +03:00
parent 7fa061c941
commit 6ff608c012

View File

@ -93,7 +93,7 @@ int l_debug_print(lua::State* 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) {
addIndentation(1);
debugPrint(i, 1, false);