From 41ed560c4528afcef58bf95c6aa9f610b734ea98 Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 1 Sep 2018 19:35:55 +0000 Subject: [PATCH] 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 --- source/duke3d/src/gamedef.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/duke3d/src/gamedef.cpp b/source/duke3d/src/gamedef.cpp index ef0a9552d..ce17913d5 100644 --- a/source/duke3d/src/gamedef.cpp +++ b/source/duke3d/src/gamedef.cpp @@ -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(" ");