From d038179117523fe1abc8ba6da2803abbcdce762e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 28 Mar 2004 23:17:08 +0000 Subject: [PATCH] disable directory flushing for now (oops, meant to commit this two days ago) --- stepmania/src/RageFileDriverDirect.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/RageFileDriverDirect.cpp b/stepmania/src/RageFileDriverDirect.cpp index 7bacd9310c..cfcb7880e4 100644 --- a/stepmania/src/RageFileDriverDirect.cpp +++ b/stepmania/src/RageFileDriverDirect.cpp @@ -199,7 +199,8 @@ bool RageFileObjDirect::FinalFlush() SetError( strerror(errno) ); return false; } - +#if 0 + /* XXX: causing problems for some reason */ /* Wait for the directory to be flushed. */ int dirfd = open( Dirname(path), O_RDONLY ); if( dirfd == -1 ) @@ -218,6 +219,7 @@ bool RageFileObjDirect::FinalFlush() } close( dirfd ); +#endif return true; }