From 6cb8e8854b858d34533c89efffe66b4004c4525b Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Fri, 17 Mar 2023 00:04:08 +0100 Subject: [PATCH] Add 'Verify' macro stub in dbg.h --- r5dev/tier0/dbg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/r5dev/tier0/dbg.h b/r5dev/tier0/dbg.h index 01ebc900..2ef3a53e 100644 --- a/r5dev/tier0/dbg.h +++ b/r5dev/tier0/dbg.h @@ -9,6 +9,7 @@ #define DBG_H #define Assert assert #define AssertDbg assert +#define Verify( _exp ) ( _exp ) #include "tier0/dbgflag.h" bool HushAsserts();