diff --git a/stepmania/src/AnnouncerManager.cpp b/stepmania/src/AnnouncerManager.cpp index 7c5d27d292..2cf08b4d81 100644 --- a/stepmania/src/AnnouncerManager.cpp +++ b/stepmania/src/AnnouncerManager.cpp @@ -76,13 +76,14 @@ CString AnnouncerManager::GetPathTo( CString sFolderName ) { LOG->Trace( "The current announcer is missing the folder '%s'.", sFolderName ); MessageBeep( MB_OK ); - CreateDirectory( sPathToFolderCurrent, NULL ); + CreateDirectories( sPathToFolderCurrent ); } if( !DoesFileExist(sPathToFolderEmpty) ) { LOG->Trace( "The empty announcer is missing the folder '%s'.", sFolderName ); MessageBeep( MB_OK ); - CreateDirectory( sPathToFolderEmpty, NULL ); + CreateDirectories( sPathToFolderEmpty ); + CreateDirectories( sPathToFolderEmpty ); } #endif