Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3ac99e4

Browse files
committedJun 25, 2024·
[TD] Fix loading of zounds.mix.
Loading was previously gated behind a check for Special.IsJuvenile which isn't set until later in the init process.
1 parent 5bff786 commit 3ac99e4

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed
 

‎tiberiandawn/init.cpp

+19-15
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ bool Init_Game(int, char*[])
306306
sprintf(buffer, "Command & Conquer kann Ihren Maustreiber nicht finden..");
307307
#else
308308
#ifdef FRENCH
309-
sprintf(buffer, "Command & Conquer ne peut pas dtecter votre gestionnaire de souris.");
309+
sprintf(buffer, "Command & Conquer ne peut pas d?tecter votre gestionnaire de souris.");
310310
#else
311311
sprintf(buffer, "Command & Conquer is unable to detect your mouse driver.");
312312
#endif
@@ -511,10 +511,6 @@ bool Init_Game(int, char*[])
511511
MFCD::Cache("CONQUER.MIX");
512512
if (SampleType != 0 && !Debug_Quiet) {
513513
MFCD::Cache("SOUNDS.MIX");
514-
if (Special.IsJuvenile) {
515-
new MFCD("ZOUNDS.MIX"); // Cached.
516-
MFCD::Cache("ZOUNDS.MIX");
517-
}
518514
}
519515
}
520516
Call_Back();
@@ -618,6 +614,14 @@ bool Init_Game(int, char*[])
618614
*/
619615
Options.Load_Settings();
620616

617+
/*
618+
** Now that conquer.ini has been read, we can check if we need zounds.mix.
619+
*/
620+
if (!Is_Demo() && SampleType != 0 && !Debug_Quiet && Special.IsJuvenile) {
621+
new MFCD("ZOUNDS.MIX");
622+
MFCD::Cache("ZOUNDS.MIX");
623+
}
624+
621625
/*
622626
** Dump a default copy of rules.ini.
623627
*/
@@ -1665,20 +1669,20 @@ bool Parse_Command_Line(int argc, char* argv[])
16651669
" (Syntax: DESTNETxx.xx.xx.xx)\r\n"
16661670
" -SOCKET = Kennung des Netzwerk-Sockets (0 - 16383)\n"
16671671
" -STEALTH = Namen im Mehrspieler-Modus verstecken (\"Boss-Modus\")\r\n"
1668-
" -MESSAGES = Mitteilungen von auerhalb des Spiels zulassen\r\n"
1672+
" -MESSAGES = Mitteilungen von au?erhalb des Spiels zulassen\r\n"
16691673
// " -ELITE = Fortgeschrittene KI und Gefechtstechniken.\r\n"
16701674
"\r\n");
16711675
#else
16721676
#ifdef FRENCH
16731677
puts("Command & Conquer (c) 1995, Westwood Studios\r\n"
1674-
"Paramtres:\r\n"
1675-
// " -CD<chemin d'accs> = Recherche des fichiers dans le\r\n"
1676-
// " rpertoire indiqu.\r\n"
1677-
" -DESTNET = Spcifier le numro de rseau du systme de destination\r\n"
1678+
"Param?tres:\r\n"
1679+
// " -CD<chemin d'acc?s> = Recherche des fichiers dans le\r\n"
1680+
// " r?pertoire indiqu?.\r\n"
1681+
" -DESTNET = Sp?cifier le num?ro de r?seau du syst?me de destination\r\n"
16781682
" (Syntaxe: DESTNETxx.xx.xx.xx)\r\n"
1679-
" -SOCKET = ID poste rseau (0 16383)\r\n"
1683+
" -SOCKET = ID poste r?seau (0 ? 16383)\r\n"
16801684
" -STEALTH = Cacher les noms en mode multijoueurs (\"Mode Boss\")\r\n"
1681-
" -MESSAGES = Autorise les messages extrieurs ce jeu.\r\n"
1685+
" -MESSAGES = Autorise les messages ext?rieurs ? ce jeu.\r\n"
16821686
"\r\n");
16831687
#else
16841688
puts("Command & Conquer (c) 1995, 1996 Westwood Studios\r\n"
@@ -2075,9 +2079,9 @@ void Parse_INI_File(void)
20752079
/*
20762080
** These arrays store the coded version of the names Geologic, Period, & Jurassic.
20772081
** Decode them by subtracting 83. For you curious types, the names look like:
2078-
** ��¿º��
2079-
** ��ż·
2080-
** ?�Ŵ�Ƽ�
2082+
** ??¨§??
2083+
** ???ú
2084+
** ??????
20812085
** If these INI entries aren't found, the IsJurassic flag does nothing.
20822086
*/
20832087
static char coded_section[] = {154, 184, 194, 191, 194, 186, 188, 182, 0};

0 commit comments

Comments
 (0)
Please sign in to comment.