From 155007bd3e53e092df6381f8f554eec7052938fb Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 24 Sep 2005 01:05:16 +0000 Subject: [PATCH] don't write CatalogXml if FastLoad --- stepmania/src/StepMania.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index ca42e91c81..d64ed90998 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -1117,7 +1117,8 @@ int main(int argc, char* argv[]) /* This shouldn't need to be here; if it's taking long enough that this is * even visible, we should be fixing it, not showing a progress display. */ - SaveCatalogXml( loading_window ); + if( !PREFSMAN->m_bFastLoad ) + SaveCatalogXml( loading_window ); NSMAN = new NetworkSyncManager( loading_window ); MESSAGEMAN = new MessageManager;