diff --git a/src/core/scripthost.cpp b/src/core/scripthost.cpp index aaf3393c..203d116d 100644 --- a/src/core/scripthost.cpp +++ b/src/core/scripthost.cpp @@ -135,7 +135,7 @@ ScriptHost::ScriptHost(Pack* pack, lua_State *L, Tracker *tracker) else lua_pushstring(_L, pair.second.code.c_str()); // arg1: watched code if (lua_pcall(_L, 1, 0, 0)) { - printf("Error calling Memory Watch Callback for %s: %s\n", + printf("Error calling WatchForCode Callback for %s: %s\n", pair.first.c_str(), lua_tostring(_L, -1)); lua_pop(_L, 1); return;