From d103d44938e6f732ca60af4d2b0c0b8ea9ab7933 Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Sun, 20 Aug 2023 01:46:53 -0400 Subject: [PATCH] main.kart to bios.pk3 Turned main.kart into a .pk3, reorganized it, added new logo and extras --- src/d_main.c | 2 +- src/d_netfil.c | 2 +- src/sdl12/i_system.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/d_main.c b/src/d_main.c index bc042c57c..76ffb1a57 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -1099,7 +1099,7 @@ static void ChangeDirForUrlHandler(void) static boolean AddIWAD(void) { - char * path = va(pandf,srb2path,"main.kart"); + char * path = va(pandf,srb2path,"bios.pk3"); if (FIL_ReadFileOK(path)) { diff --git a/src/d_netfil.c b/src/d_netfil.c index 916dd75be..cb6897a8e 100644 --- a/src/d_netfil.c +++ b/src/d_netfil.c @@ -1426,7 +1426,7 @@ void PT_FileFragment(void) filename = va("%s", file->filename); nameonly(filename); - if (!strcmp(filename, "main.kart") + if (!strcmp(filename, "bios.pk3") || !strcmp(filename, "gfx.pk3") || !strcmp(filename, "textures.pk3") || !strcmp(filename, "textures_general.pk3") diff --git a/src/sdl12/i_system.c b/src/sdl12/i_system.c index 409339ded..2a6608039 100644 --- a/src/sdl12/i_system.c +++ b/src/sdl12/i_system.c @@ -217,7 +217,7 @@ void __set_fpscr(long); // in libgcc / kernel's startup.s? /** \brief WAD file to look for */ -#define WADKEYWORD "main.kart" +#define WADKEYWORD "bios.pk3" /** \brief holds wad path */ static char returnWadPath[256];