From f1ba7f811214fbae6fcc3b166d4a5759582752ac Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 12 Mar 2008 21:21:40 +0000 Subject: [PATCH] Removed a FIXME. --- CHANGELOG | 1 + platform/win32.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 916d6a8c..ee4e46eb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,7 @@ -- stuff in the stable-1.0 branch, backported from 2.0.0 dev branch, etc --- +03122008 - Removed a FIXME. 03112008 - Fixed wrong array index in Windows platform layer (thanks, James!). 03082008 - Fixed compiler warnings in Windows platform layer (thanks, Dennis!). 02202008 - Various archiver swap and compare functions now check if they are diff --git a/platform/win32.c b/platform/win32.c index 8dc27521..e22fed6f 100644 --- a/platform/win32.c +++ b/platform/win32.c @@ -204,7 +204,7 @@ static int determineUserDir(void) lib = LoadLibrary("userenv.dll"); if (lib) { - /* !!! FIXME: Handle Unicode? */ + /* If you want Unicode, upgrade to PhysicsFS 1.1.1 or later! */ GetUserProfileDirectory = (LPFNGETUSERPROFILEDIR) GetProcAddress(lib, "GetUserProfileDirectoryA"); if (GetUserProfileDirectory)