mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
49b4cf3b77
commit
46944ebde2
|
@ -70,10 +70,8 @@ extern TESTRUNARGS g_TestRun;
|
||||||
#include "Memory.h"
|
#include "Memory.h"
|
||||||
#include "Elfheader.h"
|
#include "Elfheader.h"
|
||||||
#include "Hw.h"
|
#include "Hw.h"
|
||||||
// Moving this before one of the other includes causes compilation issues.
|
|
||||||
//#include "Misc.h"
|
|
||||||
#include "Patch.h"
|
#include "Patch.h"
|
||||||
|
|
||||||
#define PCSX2_VERSION "(beta)"
|
#define PCSX2_VERSION "rc.0.9.6"
|
||||||
|
|
||||||
#endif /* __COMMON_H__ */
|
#endif /* __COMMON_H__ */
|
||||||
|
|
|
@ -1071,15 +1071,11 @@ void CreateMainWindow(int nCmdShow) {
|
||||||
RegisterClass(&wc);
|
RegisterClass(&wc);
|
||||||
GetObject(hbitmap_background, sizeof(bm), &bm);
|
GetObject(hbitmap_background, sizeof(bm), &bm);
|
||||||
|
|
||||||
{
|
|
||||||
const char* pvm = "VTLB";
|
|
||||||
|
|
||||||
#ifdef PCSX2_DEVBUILD
|
#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
|
#else
|
||||||
sprintf(buf, _("PCSX2 %s - %s"), PCSX2_VERSION, pvm);
|
sprintf(buf, "PCSX2 %s", PCSX2_VERSION );
|
||||||
#endif
|
#endif
|
||||||
}
|
|
||||||
|
|
||||||
hWnd = CreateWindow(
|
hWnd = CreateWindow(
|
||||||
"PCSX2 Main",
|
"PCSX2 Main",
|
||||||
|
|
Loading…
Reference in New Issue