From 28ffccd0b2e14e5b896d304cdf1bbac8d01cbc5c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 14 Aug 2017 02:42:13 -0400 Subject: [PATCH] Turns out we were doing this for a (maybe not good, but reasonable) reason. --- src/physfs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/physfs.c b/src/physfs.c index 1e10b96..f7ff9a2 100644 --- a/src/physfs.c +++ b/src/physfs.c @@ -2795,7 +2795,6 @@ static PHYSFS_sint64 doBufferedWrite(PHYSFS_File *handle, const void *buffer, } /* if */ /* would overflow buffer. Flush and then write the new objects, too. */ - /* !!! FIXME-3.0: this should refill the buffer, not flush everything down. */ BAIL_IF_ERRPASS(!PHYSFS_flush(handle), -1); return fh->io->write(fh->io, buffer, len); } /* doBufferedWrite */