From b9216dcc97b5de7674c0fc74ed82cced6198f578 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 8 Aug 2006 10:54:33 +0000 Subject: [PATCH] Don't load songs with just dumping strings. --- 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 71cbd881c6..665eb52565 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -1053,7 +1053,8 @@ int main(int argc, char* argv[]) /* depends on SONGINDEX: */ SONGMAN = new SongManager(); - SONGMAN->InitAll( loading_window ); // this takes a long time + if( !GetCommandlineArgument("ExportNsisStrings") && !GetCommandlineArgument("ExportLuaInformation") ) + SONGMAN->InitAll( loading_window ); // this takes a long time CRYPTMAN = new CryptManager; // need to do this before ProfileMan MEMCARDMAN = new MemoryCardManager; CHARMAN = new CharacterManager;