mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- shortened the message for not found game data and restrict to non-Windows systems.
This commit is contained in:
parent
a10018bc36
commit
e9b2bf9e4e
1 changed files with 6 additions and 5 deletions
|
@ -653,11 +653,12 @@ static TArray<GrpEntry> SetupGame()
|
|||
{
|
||||
// Abort if no game data found.
|
||||
G_SaveConfig();
|
||||
I_Error("Unable to find any game data. Please verify your settings.\n"
|
||||
"Install game data files in subfolders of: " + M_GetAppDataPath(false) + "\n\n"
|
||||
"For example, you can create a 'duke' folder inside the above folder\n"
|
||||
"and place DUKE3D.GRP and DUKE.RTS (case-insensitive) in the 'duke' folder.\n"
|
||||
"Subfolders can have any name. The name has no bearing on game recognition.");
|
||||
I_Error("Unable to find any game data. Please verify your settings."
|
||||
#ifdef WIN32
|
||||
);
|
||||
#else
|
||||
"\nInstall game data files in subfolders of '%s'\n\n", M_GetAppDataPath(false).GetChars());
|
||||
#endif
|
||||
}
|
||||
|
||||
decltype(groups) usedgroups;
|
||||
|
|
Loading…
Reference in a new issue