This commit is contained in:
Joe Eagar 2019-04-28 23:29:29 -07:00
commit 9c7f58d476
1 changed files with 4 additions and 1 deletions

View File

@ -258,7 +258,10 @@ void CSystemEvents::ExecuteEvents()
}
break;
case SysEvent_ResetRecompilerCode:
g_Recompiler->ResetRecompCode(true);
if (g_Recompiler)
{
g_Recompiler->ResetRecompCode(true);
}
break;
default:
g_Notify->BreakPoint(__FILE__, __LINE__);