From 5308f12c759340577000991e5466e9dd8ae222c4 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 5 Sep 2008 11:59:33 +0000 Subject: Ported AMIGA specific file buffering 'hack' from class File to StdioStream svn-id: r34345 --- backends/fs/stdiostream.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'backends/fs') diff --git a/backends/fs/stdiostream.cpp b/backends/fs/stdiostream.cpp index dfb01362e1..70739cab08 100644 --- a/backends/fs/stdiostream.cpp +++ b/backends/fs/stdiostream.cpp @@ -194,6 +194,21 @@ void StdioStream::flush() { StdioStream *StdioStream::makeFromPath(const Common::String &path, bool writeMode) { FILE *handle = fopen(path.c_str(), writeMode ? "wb" : "rb"); + +#ifdef __amigaos4__ + // + // Work around for possibility that someone uses AmigaOS "newlib" build + // with SmartFileSystem (blocksize 512 bytes), leading to buffer size + // being only 512 bytes. "Clib2" sets the buffer size to 8KB, resulting + // smooth movie playback. This forces the buffer to be enough also when + // using "newlib" compile on SFS. + // + if (handle && !writeMode) { + setvbuf(handle, NULL, _IOFBF, 8192); + } +#endif + + if (handle) return new StdioStream(handle); return 0; -- cgit v1.2.3