Make Test Run the default map in DEVELOP builds

This makes testing easy by starting the game with -server
This commit is contained in:
James R 2022-11-29 16:54:31 -08:00
parent 50a1dcf979
commit 3d500148cd

View file

@ -1203,7 +1203,11 @@ D_ConvertVersionNumbers (void)
void D_SRB2Main(void)
{
INT32 i, p;
INT32 pstartmap = 0;
#ifdef DEVELOP
INT32 pstartmap = 1; // default to first loaded map (Test Run)
#else
INT32 pstartmap = 0; // default to random map (0 is not a valid map number)
#endif
boolean autostart = false;
/* break the version string into version numbers, for netplay */