From 31b2a067e87420d453cdbe9d1fabea5f883fdee6 Mon Sep 17 00:00:00 2001 From: s1lent Date: Tue, 2 Oct 2018 12:58:08 +0700 Subject: [PATCH] Fix conflict cssdk_const.inc due to hlsdk_const.inc update --- reapi/extra/amxmodx/scripting/include/cssdk_const.inc | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/reapi/extra/amxmodx/scripting/include/cssdk_const.inc b/reapi/extra/amxmodx/scripting/include/cssdk_const.inc index b30b030..c954dc6 100644 --- a/reapi/extra/amxmodx/scripting/include/cssdk_const.inc +++ b/reapi/extra/amxmodx/scripting/include/cssdk_const.inc @@ -1302,10 +1302,7 @@ enum InfoMapBuyParam /** * For SetUse */ -enum USE_TYPE -{ - USE_OFF, - USE_ON, - USE_SET, - USE_TOGGLE -}; +#define USE_OFF 0 +#define USE_ON 1 +#define USE_SET 2 +#define USE_TOGGLE 3