From 8b7a62b89a7c70e4a48bf16566a555f63bb9b86c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 3 Jul 2003 18:55:35 +0000 Subject: [PATCH] fix Windows compile (er, I'd have used strcasecmp if I could have). I'll add a check for this in a minute. --- stepmania/src/RageUtil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageUtil.h b/stepmania/src/RageUtil.h index 80c57b25f0..84e08672f8 100644 --- a/stepmania/src/RageUtil.h +++ b/stepmania/src/RageUtil.h @@ -244,8 +244,8 @@ struct char_traits_char_nocase: public char_traits { return toupper(c1) < toupper(c2); } static int compare( const char* s1, const char* s2, size_t n ) { - //return memicmp( s1, s2, n ); - return strncasecmp( s1, s2, n ); + return memicmp( s1, s2, n ); + //return strncasecmp( s1, s2, n ); } static inline char fasttoupper(char a)