Another FIXME.
This commit is contained in:
parent
14d723c316
commit
b2e6882f52
|
@ -2507,9 +2507,8 @@ int PHYSFS_setBuffer(PHYSFS_File *handle, PHYSFS_uint64 _bufsize)
|
|||
FileHandle *fh = (FileHandle *) handle;
|
||||
PHYSFS_uint32 bufsize;
|
||||
|
||||
/* !!! FIXME: Unlocalized string. */
|
||||
/* !!! FIXME: actually, why use 32 bits here? */
|
||||
//BAIL_IF_MACRO(_bufsize > 0xFFFFFFFF, "buffer must fit in 32-bits", 0);
|
||||
/*BAIL_IF_MACRO(_bufsize > 0xFFFFFFFF, "buffer must fit in 32-bits", 0);*/
|
||||
BAIL_IF_MACRO(_bufsize > 0xFFFFFFFF, PHYSFS_ERR_INVALID_ARGUMENT, 0);
|
||||
bufsize = (PHYSFS_uint32) _bufsize;
|
||||
|
||||
|
|
Loading…
Reference in New Issue