From 5b2a47b366b78b14359baff51cbca3d71817ba94 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 12 Dec 2003 10:07:07 +0000 Subject: [PATCH] fix (nothing, I think) --- stepmania/src/StepMania.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 0bb5cdd550..40e13434ce 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -122,7 +122,7 @@ static void ChangeToDirOfExecutable(const char *argv0) /* Change to the directory that crash dumps should be logged to. */ #if defined(_WIN32) - chdir( DirOfExecutable ); + chdir( DirOfExecutable + "/.." ); #elif defined(LINUX) const char *home = getenv("HOME"); if( home )