From 4d133cf6629f3dcc4ba9aa81fa3a09a6f546feb5 Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Tue, 9 Aug 2011 12:27:56 +1000 Subject: [PATCH] Rework the definition of USE_UTF8_GAME_FILE a little --- src/system.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/system.h b/src/system.h index 1e6fb58..7ea4458 100644 --- a/src/system.h +++ b/src/system.h @@ -86,10 +86,11 @@ // Character set conversion for game files -#undef USE_UTF8_GAME_FILE #ifdef HAVE_ICONV # define USE_UTF8_GAME_FILE 1 # include "striconv.h" +#else +# undef USE_UTF8_GAME_FILE #endif