Reword error message displayed at startup when game data is missing

git-svn-id: https://svn.eduke32.com/eduke32@6970 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2018-09-01 19:35:55 +00:00
parent 0cc54720db
commit 41ed560c45

View file

@ -6638,8 +6638,7 @@ void C_Compile(const char *fileName)
#ifndef EDUKE32_STANDALONE
char const *gf = G_GrpFile();
Bsprintf(tempbuf,"Required game data was not found. A valid copy of \"%s\" or other compatible data is needed to run EDuke32.\n\n"
"You can find \"%s\" in the \"DN3DINST\" or \"ATOMINST\" directory on your Duke Nukem 3D installation disc.\n\n"
"Please copy \"%s\" to your game directory and restart EDuke32!", gf, gf, gf);
"You must copy \"%s\" to your game directory before continuing!", gf, gf);
G_GameExit(tempbuf);
#else
G_GameExit(" ");