- GAMESIG was never supposed to be used in printed output. Replaced all occurences with GAMENAME.

This commit is contained in:
Christoph Oelckers 2020-01-12 09:43:47 +01:00
commit d636acb002
7 changed files with 10 additions and 10 deletions

View file

@ -578,7 +578,7 @@ BOOL CALLBACK IWADBoxCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa
GetWindowTextW(hDlg, label, countof(label));
FString alabel(label);
newlabel.Format(GAMESIG " %s: %s", GetVersionString(), alabel.GetChars());
newlabel.Format(GAMENAME " %s: %s", GetVersionString(), alabel.GetChars());
auto wlabel = newlabel.WideString();
SetWindowTextW(hDlg, wlabel.c_str());
}