mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-18 01:51:39 +00:00
I forgot to stage this I'm an idiot
This commit is contained in:
parent
023c095d55
commit
b3a006a699
3 changed files with 6 additions and 6 deletions
|
@ -31,9 +31,9 @@
|
||||||
*/
|
*/
|
||||||
#define ASSET_HASH_SRB2_PK3 "0277c9416756627004e83cbb5b2e3e28"
|
#define ASSET_HASH_SRB2_PK3 "0277c9416756627004e83cbb5b2e3e28"
|
||||||
#define ASSET_HASH_ZONES_PK3 "f7e88afb6af7996a834c7d663144bead"
|
#define ASSET_HASH_ZONES_PK3 "f7e88afb6af7996a834c7d663144bead"
|
||||||
#define ASSET_HASH_PLAYER_DTA "ad49e07b17cc662f1ad70c454910b4ae"
|
#define ASSET_HASH_PLAYER_DTA "8a4507ddf9bc0682c09174400f26ad65"
|
||||||
#ifdef USE_PATCH_DTA
|
#ifdef USE_PATCH_DTA
|
||||||
#define ASSET_HASH_PATCH_PK3 "ee54330ecb743314c5f962af4db731ff"
|
#define ASSET_HASH_PATCH_PK3 "17dea2271aad11877a165b27ebd5b480"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -971,11 +971,11 @@ static void IdentifyVersion(void)
|
||||||
D_AddFile(va(pandf,srb2waddir,"zones.pk3"));
|
D_AddFile(va(pandf,srb2waddir,"zones.pk3"));
|
||||||
|
|
||||||
// Add the players
|
// Add the players
|
||||||
D_AddFile(va(pandf,srb2waddir, "player.dta"));
|
D_AddFile(va(pandf,srb2waddir, "player_next.dta"));
|
||||||
|
|
||||||
#ifdef USE_PATCH_DTA
|
#ifdef USE_PATCH_DTA
|
||||||
// Add our crappy patches to fix our bugs
|
// Add our crappy patches to fix our bugs
|
||||||
D_AddFile(va(pandf,srb2waddir,"patch.pk3"));
|
D_AddFile(va(pandf,srb2waddir,"patch_next.pk3"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined (HAVE_SDL) || defined (HAVE_MIXER)
|
#if !defined (HAVE_SDL) || defined (HAVE_MIXER)
|
||||||
|
|
|
@ -977,8 +977,8 @@ void Got_Filetxpak(void)
|
||||||
|
|
||||||
if (!(strcmp(filename, "srb2.pk3")
|
if (!(strcmp(filename, "srb2.pk3")
|
||||||
&& strcmp(filename, "zones.pk3")
|
&& strcmp(filename, "zones.pk3")
|
||||||
&& strcmp(filename, "player.dta")
|
&& strcmp(filename, "player_next.dta")
|
||||||
&& strcmp(filename, "patch.pk3")
|
&& strcmp(filename, "patch_next.pk3")
|
||||||
&& strcmp(filename, "music.dta")
|
&& strcmp(filename, "music.dta")
|
||||||
))
|
))
|
||||||
I_Error("Tried to download \"%s\"", filename);
|
I_Error("Tried to download \"%s\"", filename);
|
||||||
|
|
Loading…
Reference in a new issue