From f7b18deff3ab30eeaedc27862bff0995c1aceeb7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 17 Apr 2004 22:37:40 +0000 Subject: [PATCH] fix driver root creation --- stepmania/src/RageFileDriverDirect.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/RageFileDriverDirect.cpp b/stepmania/src/RageFileDriverDirect.cpp index 26b7e0e999..95feb72658 100644 --- a/stepmania/src/RageFileDriverDirect.cpp +++ b/stepmania/src/RageFileDriverDirect.cpp @@ -58,6 +58,9 @@ RageFileDriverDirect::RageFileDriverDirect( CString root_ ): { if( root.Right(1) != "/" ) root += '/'; + + /* If the root path doesn't exist, create it. */ + CreateDirectories( root ); }