mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- DavidPH's patch for Linux compilation.
This commit is contained in:
parent
ef42955053
commit
d1835b2db8
3 changed files with 3 additions and 2 deletions
|
@ -682,6 +682,7 @@ add_executable( zdoom WIN32
|
||||||
g_skill.cpp
|
g_skill.cpp
|
||||||
gameconfigfile.cpp
|
gameconfigfile.cpp
|
||||||
gi.cpp
|
gi.cpp
|
||||||
|
gitinfo.cpp
|
||||||
hu_scores.cpp
|
hu_scores.cpp
|
||||||
i_net.cpp
|
i_net.cpp
|
||||||
info.cpp
|
info.cpp
|
||||||
|
|
|
@ -286,7 +286,7 @@ int main (int argc, char **argv)
|
||||||
|
|
||||||
char caption[100];
|
char caption[100];
|
||||||
mysnprintf(caption, countof(caption), GAMESIG " %s (%s)", GetVersionString(), GetGitTime());
|
mysnprintf(caption, countof(caption), GAMESIG " %s (%s)", GetVersionString(), GetGitTime());
|
||||||
SDL_WM_SetCaption(caption);
|
SDL_WM_SetCaption(caption, caption);
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
|
|
||||||
|
|
|
@ -619,7 +619,7 @@ int I_PickIWad (WadStuff *wads, int numwads, bool showwin, int defaultiwad)
|
||||||
FString cmd("kdialog --title \""GAMESIG" ");
|
FString cmd("kdialog --title \""GAMESIG" ");
|
||||||
cmd << GetVersionString() << ": Select an IWAD to use\""
|
cmd << GetVersionString() << ": Select an IWAD to use\""
|
||||||
" --menu \"ZDoom found more than one IWAD\n"
|
" --menu \"ZDoom found more than one IWAD\n"
|
||||||
"Select from the list below to determine which one to use:\"");
|
"Select from the list below to determine which one to use:\"";
|
||||||
|
|
||||||
for(i = 0; i < numwads; ++i)
|
for(i = 0; i < numwads; ++i)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue