From 5574acda3dc1ffd3de58249ff192bd2e43bed27a Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Tue, 12 May 2015 06:35:48 -0400 Subject: [PATCH] Remove Address_MinimumValid entry from sp incs We have this defined in core for error checking, but it's useless in sp since unsigned comparisons are not supported. --- plugins/include/sourcemod.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/include/sourcemod.inc b/plugins/include/sourcemod.inc index 85160628..4dbe86cd 100644 --- a/plugins/include/sourcemod.inc +++ b/plugins/include/sourcemod.inc @@ -643,8 +643,7 @@ enum NumberType enum Address { - Address_Null = 0, //a typical invalid result when an address lookup fails - Address_MinimumValid = 0x10000 //addresses below this value are considered invalid to use for Load/Store + Address_Null = 0, // a typical invalid result when an address lookup fails }; /**