updates to version string for final builds
This commit is contained in:
parent
d234e277ef
commit
01d776b9e8
|
@ -1468,7 +1468,11 @@ void handleRewinds()
|
|||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
#ifndef FINAL_BUILD
|
||||
fprintf(stdout, "VBA-M version %s [SDL]\n", SVN_REV_STR);
|
||||
#else
|
||||
fprintf(stdout, "VBA-M version %s [SDL]");
|
||||
#endif
|
||||
|
||||
home = argv[0];
|
||||
SetHome(home);
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
#define VBA_NAME "VisualBoyAdvance-M"
|
||||
|
||||
#ifdef WIN32
|
||||
#ifndef FINAL_BUILD
|
||||
#include "svnrev.h"
|
||||
#else
|
||||
#ifdef SVN_REV
|
||||
|
|
|
@ -450,7 +450,7 @@ void GameArea::SetFrameTitle()
|
|||
}
|
||||
|
||||
tit.append(wxT("VisualBoyAdvance-M "));
|
||||
#ifndef FINAL_VERSION
|
||||
#ifndef FINAL_BUILD
|
||||
tit.append(wxT(SVN_REV_STR));
|
||||
#endif
|
||||
#ifndef NO_LINK
|
||||
|
|
Loading…
Reference in New Issue