EDUKE32_STANDALONE improvement. DONT_BUILD.

git-svn-id: https://svn.eduke32.com/eduke32@6124 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2017-04-24 04:35:18 +00:00
parent 0acdeb93d1
commit 76b83164a5
1 changed files with 4 additions and 1 deletions

View File

@ -6314,11 +6314,14 @@ void C_Compile(const char *fileName)
if (g_loadFromGroupOnly == 1 || numgroupfiles == 0)
{
char const *gf = G_GrpFile();
#ifndef EDUKE32_STANDALONE
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);
G_GameExit(tempbuf);
#else
G_GameExit(" ");
#endif
}
else
{