diff --git a/reaction/ta_ui/ui_gameinfo.c b/reaction/ta_ui/ui_gameinfo.c index ba1d899e..02c8a914 100644 --- a/reaction/ta_ui/ui_gameinfo.c +++ b/reaction/ta_ui/ui_gameinfo.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.11 2003/03/31 01:23:54 jbravo +// Fixing 2 compiler warnings +// // Revision 1.10 2002/09/08 13:14:47 makro // New code added for the callvote menu map list // @@ -80,7 +83,7 @@ static RQ3_GameType_t RQ3_GameTypes[] = { {"none", 0} }; -static int UI_RQ3_DefaultArenaGameType = 1 << GT_FFA; +// static int UI_RQ3_DefaultArenaGameType = 1 << GT_FFA; //end Makro diff --git a/reaction/ta_ui/ui_main.c b/reaction/ta_ui/ui_main.c index 7aeec322..cb82769b 100644 --- a/reaction/ta_ui/ui_main.c +++ b/reaction/ta_ui/ui_main.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.66 2003/03/31 01:23:54 jbravo +// Fixing 2 compiler warnings +// // Revision 1.65 2003/03/31 00:23:18 makro // Replacements and stuff // @@ -2611,7 +2614,7 @@ void UI_BuildReplacementList(const char *type) for (i = 0; i < numfiles && uiInfo.replacements.Count < MAX_UI_REPLACEMENTS; i++, fileptr += filelen + 1) { filelen = strlen(fileptr); - if (strnicmp(fileptr, va("%s_", type), strlen(type)+1)) + if (Q_stricmpn(fileptr, va("%s_", type), strlen(type)+1)) continue; UI_AddReplacement(va("models/replacements/%s", fileptr)); }