From 1ed005e5713d1f60a1948631dd326fc0fbf0a43b Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sat, 20 Mar 2021 17:20:11 +0200 Subject: [PATCH] Update Events.inc --- module/Core/Events.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Core/Events.inc b/module/Core/Events.inc index 7d93f3ae..5b5ef78f 100644 --- a/module/Core/Events.inc +++ b/module/Core/Events.inc @@ -72,7 +72,7 @@ void Core::EmitCheckpointCreated(int32_t checkpoint, int32_t header, LightObj & // ------------------------------------------------------------------------------------------------ void Core::EmitKeyBindCreated(int32_t key_bind, int32_t header, LightObj & payload) { - SQMOD_CO_EV_TRACEBACK("[TRACE<] Core::KeyBindCreated(%d, %d, %s)", keybind, header, NULL_SQOBJ_(payload)) + SQMOD_CO_EV_TRACEBACK("[TRACE<] Core::KeyBindCreated(%d, %d, %s)", key_bind, header, NULL_SQOBJ_(payload)) (*mOnKeyBindCreated.first)(m_KeyBinds.at(static_cast< size_t >(key_bind)).mObj, header, payload); SQMOD_CO_EV_TRACEBACK("[TRACE>] Core::KeyBindCreated") }