mirror of https://github.com/PCSX2/pcsx2.git
Same fix for cdvdGigaherz as the last rev + workaround for ZeroGS so it also works in default Vista/Win7 installs.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3006 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
6cb3f00f68
commit
1d534c7481
|
@ -23,3 +23,4 @@ EXPORTS
|
||||||
CDVDgetBuffer2 @23
|
CDVDgetBuffer2 @23
|
||||||
CDVDreadSector @24
|
CDVDreadSector @24
|
||||||
CDVDgetDualInfo @25
|
CDVDgetDualInfo @25
|
||||||
|
CDVDsetSettingsDir @26
|
||||||
|
|
|
@ -286,11 +286,15 @@ s32 CALLBACK GSinit()
|
||||||
if (gsLog == NULL) {
|
if (gsLog == NULL) {
|
||||||
gsLog = fopen("gsLog.txt", "w");
|
gsLog = fopen("gsLog.txt", "w");
|
||||||
if (gsLog == NULL) {
|
if (gsLog == NULL) {
|
||||||
SysMessage("Can't create gsLog.txt"); return -1;
|
printf("ZeroGS: Can't create gsLog.txt. (Not an emulation error).\n");
|
||||||
|
//return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (gsLog != NULL) {
|
||||||
setvbuf(gsLog, NULL, _IONBF, 0);
|
setvbuf(gsLog, NULL, _IONBF, 0);
|
||||||
GS_LOG("GSinit\n");
|
GS_LOG("GSinit\n");
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
GSreset();
|
GSreset();
|
||||||
|
|
Loading…
Reference in New Issue