mirror of https://github.com/PCSX2/pcsx2.git
New logos and other misc changes.
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@419 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
09e87e81c7
commit
c12cb2c9ac
|
@ -198,7 +198,7 @@ extern TESTRUNARGS g_TestRun;
|
||||||
extern void __Log(const char *fmt, ...);
|
extern void __Log(const char *fmt, ...);
|
||||||
extern u16 logProtocol;
|
extern u16 logProtocol;
|
||||||
extern u8 logSource;
|
extern u8 logSource;
|
||||||
#define PCSX2_VERSION "0.9.5"
|
#define PCSX2_VERSION "Playground (beta)"
|
||||||
|
|
||||||
// C++ code for sqrtf
|
// C++ code for sqrtf
|
||||||
void InitFPUOps();
|
void InitFPUOps();
|
||||||
|
|
|
@ -425,7 +425,7 @@ void __Log(const char *fmt, ...) {
|
||||||
// STATES
|
// STATES
|
||||||
|
|
||||||
#define STATE_VERSION "STv6"
|
#define STATE_VERSION "STv6"
|
||||||
const char Pcsx2Header[32] = STATE_VERSION " PCSX2 v" PCSX2_VERSION;
|
const char Pcsx2Header[32] = STATE_VERSION " PCSX2 " PCSX2_VERSION;
|
||||||
|
|
||||||
#define _PS2Esave(type) \
|
#define _PS2Esave(type) \
|
||||||
if (type##freeze(FREEZE_SIZE, &fP) == -1) { \
|
if (type##freeze(FREEZE_SIZE, &fP) == -1) { \
|
||||||
|
|
|
@ -49,7 +49,7 @@ int cpuInit()
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
SysPrintf("PCSX2 v" PCSX2_VERSION " save ver: %x\n", dwSaveVersion);
|
SysPrintf("PCSX2 " PCSX2_VERSION " save ver: %x\n", dwSaveVersion);
|
||||||
SysPrintf("EE pc offset: 0x%x, PSX pc offset: 0x%x\n", (u32)&cpuRegs.pc - (u32)&cpuRegs, (u32)&psxRegs.pc - (u32)&psxRegs);
|
SysPrintf("EE pc offset: 0x%x, PSX pc offset: 0x%x\n", (u32)&cpuRegs.pc - (u32)&cpuRegs, (u32)&psxRegs.pc - (u32)&psxRegs);
|
||||||
|
|
||||||
InitFPUOps();
|
InitFPUOps();
|
||||||
|
@ -660,7 +660,7 @@ void cpuExecuteBios()
|
||||||
if( CHECK_EEREC ) Cpu->Reset();
|
if( CHECK_EEREC ) Cpu->Reset();
|
||||||
|
|
||||||
SysPrintf("* PCSX2 *: ExecuteBios Complete\n");
|
SysPrintf("* PCSX2 *: ExecuteBios Complete\n");
|
||||||
GSprintf(5, "PCSX2 v" PCSX2_VERSION "\nExecuteBios Complete\n");
|
GSprintf(5, "PCSX2 " PCSX2_VERSION "\nExecuteBios Complete\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void cpuRestartCPU()
|
void cpuRestartCPU()
|
||||||
|
|
|
@ -45,7 +45,7 @@ void statsClose() {
|
||||||
f = fopen(LOGS_DIR "/stats.txt", "w");
|
f = fopen(LOGS_DIR "/stats.txt", "w");
|
||||||
#endif
|
#endif
|
||||||
if (!f) { SysPrintf("Can't open stats.txt\n"); return; }
|
if (!f) { SysPrintf("Can't open stats.txt\n"); return; }
|
||||||
fprintf(f, "-- PCSX2 v%s statics--\n\n", PCSX2_VERSION);
|
fprintf(f, "-- PCSX2 %s statics--\n\n", PCSX2_VERSION);
|
||||||
fprintf(f, "Ran for %d seconds\n", t);
|
fprintf(f, "Ran for %d seconds\n", t);
|
||||||
fprintf(f, "Total VSyncs: %d (%s)\n", stats.vsyncCount, Config.PsxType ? "PAL" : "NTSC");
|
fprintf(f, "Total VSyncs: %d (%s)\n", stats.vsyncCount, Config.PsxType ? "PAL" : "NTSC");
|
||||||
#ifndef __x86_64__
|
#ifndef __x86_64__
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 245 KiB After Width: | Height: | Size: 245 KiB |
Binary file not shown.
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
@ -1607,13 +1607,13 @@ void CreateMainWindow(int nCmdShow) {
|
||||||
#ifdef PCSX2_VIRTUAL_MEM
|
#ifdef PCSX2_VIRTUAL_MEM
|
||||||
const char* pvm = "VM";
|
const char* pvm = "VM";
|
||||||
#else
|
#else
|
||||||
const char* pvm = "non VM";
|
const char* pvm = "TLB";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef PCSX2_DEVBUILD
|
#ifdef PCSX2_DEVBUILD
|
||||||
sprintf(buf, _("PCSX2 %s Playground - %s Compile Date - %s %s"), PCSX2_VERSION, pvm, COMPILEDATE, COMPILER);
|
sprintf(buf, _("PCSX2 %s - %s Compile Date - %s %s"), PCSX2_VERSION, pvm, COMPILEDATE, COMPILER);
|
||||||
#else
|
#else
|
||||||
sprintf(buf, _("PCSX2 %s Playground - %s"), PCSX2_VERSION, pvm);
|
sprintf(buf, _("PCSX2 %s - %s"), PCSX2_VERSION, pvm);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue