From b7f3e5bd1ef966a1ce82c81f5194557aae1228b7 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 22 Mar 2012 02:38:10 -0400 Subject: [PATCH] Removed a FIXME. I assume that Win95 didn't allow large files, so this concern probably wasn't ever valid in any case. Still, Win95 support has been dropped, so it doesn't matter. --- src/platform_windows.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/platform_windows.c b/src/platform_windows.c index 94ad75ed..6d3e085a 100644 --- a/src/platform_windows.c +++ b/src/platform_windows.c @@ -685,14 +685,6 @@ int __PHYSFS_platformSeek(void *opaque, PHYSFS_uint64 pos) */ pHighOrderPos = (HighOrderPos) ? &HighOrderPos : NULL; - /* - * !!! FIXME: MSDN: "Windows Me/98/95: If the pointer - * !!! FIXME: lpDistanceToMoveHigh is not NULL, then it must - * !!! FIXME: point to either 0, INVALID_SET_FILE_POINTER, or - * !!! FIXME: the sign extension of the value of lDistanceToMove. - * !!! FIXME: Any other value will be rejected." - */ - /* Move pointer "pos" count from start of file */ rc = SetFilePointer(Handle, LOWORDER_UINT64(pos), pHighOrderPos, FILE_BEGIN);