Updated version information displayed in the window title for rc_0.9.6.

git-svn-id: http://pcsx2.googlecode.com/svn/branches/rc_0.9.6@545 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2009-02-20 03:32:10 +00:00
parent 49b4cf3b77
commit 46944ebde2
2 changed files with 3 additions and 9 deletions

View File

@ -70,10 +70,8 @@ extern TESTRUNARGS g_TestRun;
#include "Memory.h"
#include "Elfheader.h"
#include "Hw.h"
// Moving this before one of the other includes causes compilation issues.
//#include "Misc.h"
#include "Patch.h"
#define PCSX2_VERSION "(beta)"
#define PCSX2_VERSION "rc.0.9.6"
#endif /* __COMMON_H__ */

View File

@ -1071,15 +1071,11 @@ void CreateMainWindow(int nCmdShow) {
RegisterClass(&wc);
GetObject(hbitmap_background, sizeof(bm), &bm);
{
const char* pvm = "VTLB";
#ifdef PCSX2_DEVBUILD
sprintf(buf, _("PCSX2 %s - %s Compile Date - %s %s"), PCSX2_VERSION, pvm, COMPILEDATE, COMPILER);
sprintf(buf, "PCSX2 %s - Compile Date - %s %s", PCSX2_VERSION, COMPILEDATE, COMPILER);
#else
sprintf(buf, _("PCSX2 %s - %s"), PCSX2_VERSION, pvm);
sprintf(buf, "PCSX2 %s", PCSX2_VERSION );
#endif
}
hWnd = CreateWindow(
"PCSX2 Main",