From b58fe300ba9d35be28b802b1b0b98fe30d4013e7 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Thu, 20 Dec 2012 18:42:15 -0500 Subject: [PATCH] Removed SE_CSS references that snuck in with merge from central. --- core/smn_entities.cpp | 4 ++-- extensions/sdktools/gamerulesnatives.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/smn_entities.cpp b/core/smn_entities.cpp index e712273a..cabe1873 100644 --- a/core/smn_entities.cpp +++ b/core/smn_entities.cpp @@ -1207,7 +1207,7 @@ static cell_t GetEntProp(IPluginContext *pContext, const cell_t *params) is_unsigned = ((info.prop->GetFlags() & SPROP_UNSIGNED) == SPROP_UNSIGNED); // This isn't in CS:S yet, but will be, doesn't hurt to add now, and will save us a build later -#if SOURCE_ENGINE == SE_CSS || SOURCE_ENGINE == SE_ORANGEBOXVALVE +#if SOURCE_ENGINE == SE_ORANGEBOXVALVE if (info.prop->GetFlags() & SPROP_VARINT) { bit_count = sizeof(int) * 8; @@ -1305,7 +1305,7 @@ static cell_t SetEntProp(IPluginContext *pContext, const cell_t *params) FIND_PROP_SEND(DPT_Int, "integer"); // This isn't in CS:S yet, but will be, doesn't hurt to add now, and will save us a build later -#if SOURCE_ENGINE == SE_CSS || SOURCE_ENGINE == SE_ORANGEBOXVALVE +#if SOURCE_ENGINE == SE_ORANGEBOXVALVE if (info.prop->GetFlags() & SPROP_VARINT) { bit_count = sizeof(int) * 8; diff --git a/extensions/sdktools/gamerulesnatives.cpp b/extensions/sdktools/gamerulesnatives.cpp index fc51bd3a..c29537c5 100644 --- a/extensions/sdktools/gamerulesnatives.cpp +++ b/extensions/sdktools/gamerulesnatives.cpp @@ -173,7 +173,7 @@ static cell_t GameRules_GetProp(IPluginContext *pContext, const cell_t *params) is_unsigned = ((info.prop->GetFlags() & SPROP_UNSIGNED) == SPROP_UNSIGNED); // This isn't in CS:S yet, but will be, doesn't hurt to add now, and will save us a build later -#if SOURCE_ENGINE == SE_CSS || SOURCE_ENGINE == SE_ORANGEBOXVALVE +#if SOURCE_ENGINE == SE_ORANGEBOXVALVE if (info.prop->GetFlags() & SPROP_VARINT) { bit_count = sizeof(int) * 8; @@ -243,7 +243,7 @@ static cell_t GameRules_SetProp(IPluginContext *pContext, const cell_t *params) FIND_PROP_SEND(DPT_Int, "integer"); // This isn't in CS:S yet, but will be, doesn't hurt to add now, and will save us a build later -#if SOURCE_ENGINE == SE_CSS || SOURCE_ENGINE == SE_ORANGEBOXVALVE +#if SOURCE_ENGINE == SE_ORANGEBOXVALVE if (info.prop->GetFlags() & SPROP_VARINT) { bit_count = sizeof(int) * 8;