From 7dc740551ec803ffc64ed22bcbd0c1b6b7dcf228 Mon Sep 17 00:00:00 2001 From: c6 Date: Mon, 21 Feb 2022 13:12:51 +0300 Subject: [PATCH] remove console spam --- JG/events/JohnnyEvents.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/JG/events/JohnnyEvents.h b/JG/events/JohnnyEvents.h index 84f8402..251604b 100644 --- a/JG/events/JohnnyEvents.h +++ b/JG/events/JohnnyEvents.h @@ -174,8 +174,6 @@ UInt32 __fastcall handlerRenderMenuEvent(void* ECX, void* edx, int arg1, int arg void __stdcall HandleAVChangeEvent(int avCode, float previousVal, float modVal) { float newVal = previousVal + modVal; - const char* avName = CdeclCall(0x66EB00, avCode); - Console_Print("%s - prev %f mod %f new %f", avName, previousVal, modVal, newVal); for (auto const& callback : OnAVChangeHandler->EventCallbacks) { if (reinterpret_cast(callback.eventFilter)->IsInFilter(1, avCode)) { CallUDF(callback.ScriptForEvent, NULL, OnAVChangeHandler->numMaxArgs, avCode, *(UInt32*)&previousVal, *(UInt32*)&newVal);