Add assert for recursive shutdown

This commit is contained in:
Kawe Mazidjatari 2022-10-11 01:21:26 +02:00
parent 530b645a4d
commit 74f8c15481

View File

@ -64,6 +64,7 @@ void SDK_Init()
void SDK_Shutdown()
{
static bool bShutDown = false;
assert(!bShutDown);
if (bShutDown)
{
spdlog::error("Recursive shutdown!\n");