Removed a FIXME.
This commit is contained in:
parent
27d1a25b24
commit
f1ba7f8112
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
-- stuff in the stable-1.0 branch, backported from 2.0.0 dev branch, etc ---
|
-- 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!).
|
03112008 - Fixed wrong array index in Windows platform layer (thanks, James!).
|
||||||
03082008 - Fixed compiler warnings in Windows platform layer (thanks, Dennis!).
|
03082008 - Fixed compiler warnings in Windows platform layer (thanks, Dennis!).
|
||||||
02202008 - Various archiver swap and compare functions now check if they are
|
02202008 - Various archiver swap and compare functions now check if they are
|
||||||
|
|
|
@ -204,7 +204,7 @@ static int determineUserDir(void)
|
||||||
lib = LoadLibrary("userenv.dll");
|
lib = LoadLibrary("userenv.dll");
|
||||||
if (lib)
|
if (lib)
|
||||||
{
|
{
|
||||||
/* !!! FIXME: Handle Unicode? */
|
/* If you want Unicode, upgrade to PhysicsFS 1.1.1 or later! */
|
||||||
GetUserProfileDirectory = (LPFNGETUSERPROFILEDIR)
|
GetUserProfileDirectory = (LPFNGETUSERPROFILEDIR)
|
||||||
GetProcAddress(lib, "GetUserProfileDirectoryA");
|
GetProcAddress(lib, "GetUserProfileDirectoryA");
|
||||||
if (GetUserProfileDirectory)
|
if (GetUserProfileDirectory)
|
||||||
|
|
Loading…
Reference in New Issue