We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9641ffc commit a1caa7bCopy full SHA for a1caa7b
tiberiandawn/init.cpp
@@ -511,10 +511,6 @@ bool Init_Game(int, char*[])
511
MFCD::Cache("CONQUER.MIX");
512
if (SampleType != 0 && !Debug_Quiet) {
513
MFCD::Cache("SOUNDS.MIX");
514
- if (Special.IsJuvenile) {
515
- new MFCD("ZOUNDS.MIX"); // Cached.
516
- MFCD::Cache("ZOUNDS.MIX");
517
- }
518
}
519
520
Call_Back();
@@ -618,6 +614,14 @@ bool Init_Game(int, char*[])
618
614
*/
619
615
Options.Load_Settings();
620
616
617
+ /*
+ ** Now that conquer.ini has been read, we can check if we need zounds.mix.
+ */
+ if (!Is_Demo() && SampleType != 0 && !Debug_Quiet && Special.IsJuvenile) {
621
+ new MFCD("ZOUNDS.MIX");
622
+ MFCD::Cache("ZOUNDS.MIX");
623
+ }
624
+
625
/*
626
** Dump a default copy of rules.ini.
627
0 commit comments