From 086665ba052c80d720441e78f11a1828ab80e376 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 31 May 2005 21:43:39 +0000 Subject: [PATCH] cleanup --- stepmania/src/RageFileDriverDirectHelpers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageFileDriverDirectHelpers.cpp b/stepmania/src/RageFileDriverDirectHelpers.cpp index 8448d50c42..62536b2fe0 100644 --- a/stepmania/src/RageFileDriverDirectHelpers.cpp +++ b/stepmania/src/RageFileDriverDirectHelpers.cpp @@ -183,7 +183,7 @@ bool CreateDirectories( CString Path ) curpath += parts[i]; #if defined(WIN32) - if( (curpath.size() == 2 && curpath[1] == ':') ) /* C: */ + if( curpath.size() == 2 && curpath[1] == ':' ) /* C: */ { /* Don't try to create the drive letter alone. */ continue; @@ -291,7 +291,7 @@ void DirectFilenameDB::PopulateFileSet( FileSet &fs, const CString &path ) * to do efficient, thread-safe directory traversal. Instead, we have to * use absolute paths, which forces the system to re-parse the directory * for each file. This isn't a major issue, since most large directory - * scans are be I/O (disk-seek)-bound. */ + * scans are I/O-bound. */ DIR *d = opendir(root+sPath); if( d == NULL )