QTfrontend/game.cpp
changeset 3709 c7849b74748d
parent 3708 64e059b6f9c5
child 3760 d30f1ba768d7
--- a/QTfrontend/game.cpp	Mon Aug 02 15:23:16 2010 +0200
+++ b/QTfrontend/game.cpp	Mon Aug 02 18:13:29 2010 +0200
@@ -277,17 +277,16 @@
     arguments << QString("%1").arg(ipc_port);
     arguments << (config->vid_Fullscreen() ? "1" : "0");
     arguments << (config->isSoundEnabled() ? "1" : "0");
-    arguments << "0"; //(config->isSoundHardware() ? "1" : "0");
-    arguments << "0"; //(config->isWeaponTooltip() ? "1" : "0");
-    arguments << tr("en.txt");
+    arguments << (config->isMusicEnabled() ? "1" : "0");
     arguments << QString::number(config->volume()); // sound volume
     arguments << QString::number(config->timerInterval());
     arguments << datadir->absolutePath();
     arguments << (config->isShowFPSEnabled() ? "1" : "0");
     arguments << (config->isAltDamageEnabled() ? "1" : "0");
     arguments << config->netNick().toUtf8().toBase64();
-    arguments << (config->isMusicEnabled() ? "1" : "0");
     arguments << QString::number(config->translateQuality());
+    arguments << tr("en.txt");
+
     return arguments;
 }