cleanup, update

This commit is contained in:
Glenn Maynard
2004-03-03 00:17:33 +00:00
parent 3aaec48875
commit 8ed0a43570
2 changed files with 2 additions and 13 deletions
+1 -12
View File
@@ -6,17 +6,6 @@
#include "PrefsManager.h"
#include "RageFileManager.h"
#include "TimingData.h"
CString GradeToString( Grade g )
{
// string is meant to be human readable
switch( g )
{
case GRADE_NO_DATA: return "NoData";
case GRADE_FAILED: return "Failed";
default:
return ssprintf("%02d",g+1);
}
};
CString InitialWorkingDirectory = ".";
CString DirOfExecutable = ".";
@@ -154,7 +143,7 @@ int main()
FILEMAN = new RageFileManager;
LOG = new RageLog();
PREFSMAN = new PrefsManager; // TimingData needs PREFSMAN; it probably shouldn't
LOG->ShowLogOutput( true );
LOG->SetShowLogOutput( true );
LOG->SetFlushing( true );
run();