Actually display the commit version. However may shorten it since it displays the full string.

This commit is contained in:
DoctorWho11 2015-10-23 22:21:39 -04:00
parent 06ffccc3f9
commit 3fac31acb5
2 changed files with 2 additions and 2 deletions

View File

@ -2519,7 +2519,7 @@ EVT_HANDLER(wxID_ABOUT, "About...")
if (!version.IsEmpty())
version = version + wxT("-");
version = version + wxT("Git:");
version = version + wxT(VERSION);
#endif
ai.SetVersion(version);
// setting website, icon, license uses custom aboutbox on win32 & macosx

View File

@ -460,7 +460,7 @@ void GameArea::SetFrameTitle()
tit.append(wxT("VisualBoyAdvance-M "));
#ifndef FINAL_BUILD
tit.append(_("Git:"));
tit.append(_(VERSION));
#endif
#ifndef NO_LINK
int playerId = GetLinkPlayerId();