From a720b62aaa912ee0755a4001dcf46ba06e107acf Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Tue, 31 Aug 2004 06:26:41 +0000 Subject: [PATCH] Oh small compiler, how I hate thee (Fixed issue where SC warned and truncated an enum entry) --- plugins/include/fakemeta_const.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/fakemeta_const.inc b/plugins/include/fakemeta_const.inc index bd0fda16..17069359 100755 --- a/plugins/include/fakemeta_const.inc +++ b/plugins/include/fakemeta_const.inc @@ -143,7 +143,7 @@ enum DLLFunc_GetHullBounds, // int) ( int hullnumber, float *mins, float *maxs ); // Create baselines for certain "unplaced" items. - DLLFunc_CreateInstancedBaselines, // void ) ( void ); + DLLFunc_CreateInstancedBaseline, // void ) ( void ); DLLFunc_pfnAllowLagCompensation, // int )( void ); // I know this does not fit with DLLFUNC(), but I dont want another native just for it. MetaFunc_CallGameEntity // bool (plid_t plid, const char *entStr,entvars_t *pev); @@ -424,6 +424,6 @@ enum { // Enumerates player hulls. Returns 0 if the hull number doesn't exist, 1 otherwise // Create baselines for certain "unplaced" items. - FM_CreateInstancedBaselines, // done + FM_CreateInstancedBaseline, // done FM_AllowLagCompensation, // done };