From c603abfebf607bd46e977366b8a08e7dc13c8f8c Mon Sep 17 00:00:00 2001 From: a1batross Date: Wed, 24 Oct 2018 20:18:06 +0300 Subject: [PATCH] crashhandler: fix developer mode check --- engine/common/crashhandler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/crashhandler.c b/engine/common/crashhandler.c index 5ce4b938..3f2826ba 100644 --- a/engine/common/crashhandler.c +++ b/engine/common/crashhandler.c @@ -202,7 +202,7 @@ long _stdcall Sys_Crash( PEXCEPTION_POINTERS pInfo ) CL_Crashed(); // tell client about crash else host.status = HOST_CRASHED; - if( host.developer <= 0 ) + if( host_developer.value <= 0 ) { // no reason to call debugger in release build - just exit Sys_Quit();