From 75759530e357c2fc702384dc6314581f8f44d974 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 28 Apr 2023 04:41:23 +0300 Subject: [PATCH] engine: remove doublecolons from MSGBOX macros --- engine/common/system.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/common/system.h b/engine/common/system.h index adf34f3d..8260c38e 100644 --- a/engine/common/system.h +++ b/engine/common/system.h @@ -30,9 +30,9 @@ extern "C" { #include "crtlib.h" #include "platform/platform.h" -#define MSGBOX( x ) Platform_MessageBox( "Xash Error", (x), false ); -#define MSGBOX2( x ) Platform_MessageBox( "Host Error", (x), true ); -#define MSGBOX3( x ) Platform_MessageBox( "Host Recursive Error", (x), true ); +#define MSGBOX( x ) Platform_MessageBox( "Xash Error", (x), false ) +#define MSGBOX2( x ) Platform_MessageBox( "Host Error", (x), true ) +#define MSGBOX3( x ) Platform_MessageBox( "Host Recursive Error", (x), true ) #define ASSERT( exp ) if(!( exp )) Sys_Error( "assert failed at %s:%i\n", __FILE__, __LINE__ ) /*