From 452e8c1e7436e1d5ddaf00cb56f9ae209ad86950 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 6 Dec 2005 17:35:40 +0000 Subject: [PATCH] cleanup --- stepmania/src/RageFileDriverDirect.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/stepmania/src/RageFileDriverDirect.cpp b/stepmania/src/RageFileDriverDirect.cpp index 0d56af5a51..8bed8efe20 100644 --- a/stepmania/src/RageFileDriverDirect.cpp +++ b/stepmania/src/RageFileDriverDirect.cpp @@ -288,13 +288,6 @@ RageFileObjDirect::~RageFileObjDirect() * filesystem. That is, there should be no intermediate state a JFS might restore * the file we're writing (in the case of a crash/powerdown) to an empty or partial * file. - * - * If we want to keep a backup, we can move the old file to "path.old" and then - * the new file to "path". However, this leaves an intermediate state between - * the renames where no "path" exists, so if we're restored to that, then we - * won't be able to find the file. The data is still there--as path.old, provided - * it's not overwritten again--but the user will have to recover it on his own. - * A safer (but much slower) way to do this is to simply CopyFile a backup first. */ CString sOldPath = MakeTempFilename(m_sPath);