From 38a7ff109eda6ba88eb42eace1f7485de17e195a Mon Sep 17 00:00:00 2001 From: Ben Anderson Date: Thu, 15 Jun 2006 02:21:47 +0000 Subject: [PATCH] NSIS is only used on Windows. --- stepmania/src/StepMania.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index e5e2c3fedc..1a31317df4 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -1115,10 +1115,15 @@ int main(int argc, char* argv[]) NSMAN->DisplayStartupStatus(); // If we're using networking show what happened /* Run the main loop. */ +#if defined(WIN32) if( GetCommandlineArgument("ExportNsisStrings") ) + // XXX Nullsoft Scriptable Installation System? ExportNsisStrings::Do(); else GameLoop::RunGameLoop(); +#else + GameLoop::RunGameLoop(); +#endif /* If we ended mid-game, finish up. */ GAMESTATE->EndGame();