1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Disable traceback on frame event.

This causes a ton of spam which makes the whole thing quite useless. Somehow I forgot about it.
This commit is contained in:
Sandu Liviu Catalin 2019-06-02 17:59:30 +03:00
parent 37e793c1ea
commit 6e6baf9b2b

View File

@ -227,9 +227,9 @@ void Core::EmitServerShutdown()
// ------------------------------------------------------------------------------------------------
void Core::EmitServerFrame(Float32 elapsed_time)
{
SQMOD_CO_EV_TRACEBACK("[TRACE<] Core::ServerFrame(%f)", elapsed_time)
//SQMOD_CO_EV_TRACEBACK("[TRACE<] Core::ServerFrame(%f)", elapsed_time)
(*mOnServerFrame.first)(elapsed_time);
SQMOD_CO_EV_TRACEBACK("[TRACE>] Core::ServerFrame")
//SQMOD_CO_EV_TRACEBACK("[TRACE>] Core::ServerFrame")
}
// ------------------------------------------------------------------------------------------------