Update all data files that have the "kart" prefix to "ring", so that you can use this in the same folder as an existing non-newmenus install.

ringconfig.cfg
ringprofiles.cfg
ringsavedips.txt
ringexec.cfg
ringserv.cfg
ringdata.dat
replay folder "ringracers"

Screenshots/gifs do not currently have adjusted name to prevent name leakage, we can change this later.
This commit is contained in:
toaster 2022-03-29 17:15:18 +01:00
parent 73dabaeab6
commit c85cc0f182
4 changed files with 7 additions and 7 deletions

View file

@ -1715,9 +1715,9 @@ void D_SRB2Main(void)
// user settings come before "+" parameters.
if (dedicated)
COM_ImmedExecute(va("exec \"%s"PATHSEP"kartserv.cfg\"\n", srb2home));
COM_ImmedExecute(va("exec \"%s"PATHSEP"ringserv.cfg\"\n", srb2home));
else
COM_ImmedExecute(va("exec \"%s"PATHSEP"kartexec.cfg\" -noerror\n", srb2home));
COM_ImmedExecute(va("exec \"%s"PATHSEP"ringexec.cfg\" -noerror\n", srb2home));
if (!autostart)
M_PushSpecialParameters(); // push all "+" parameters at the command buffer

View file

@ -74,8 +74,8 @@ JoyType_t Joystick[MAXSPLITSCREENPLAYERS];
#define SAVEGAMESIZE (1024)
// SRB2kart
char gamedatafilename[64] = "kartdata.dat";
char timeattackfolder[64] = "kart";
char gamedatafilename[64] = "ringdata.dat";
char timeattackfolder[64] = "ringracers";
char customversionstring[32] = "\0";
static void G_DoCompleted(void);

View file

@ -28,7 +28,7 @@
#define PROFILENAMELEN 6
#define PROFILEVER 1
#define MAXPROFILES 16
#define PROFILESFILE "kartprofiles.cfg"
#define PROFILESFILE "ringprofiles.cfg"
#define PROFILEDEFAULTNAME "guest"
#define PROFILEDEFAULTPNAME "Player"

View file

@ -40,10 +40,10 @@ void M_SaveFrame(void);
void M_StopMovie(void);
// the file where game vars and settings are saved
#define CONFIGFILENAME "kartconfig.cfg"
#define CONFIGFILENAME "ringconfig.cfg"
// The file where we'll save the last IPs we joined
#define IPLOGFILE "kartsavedips.txt"
#define IPLOGFILE "ringsavedips.txt"
#define IPLOGFILESEP ";"
#define NUMLOGIP 3