pcsx2: Remove zerogs, zzogl code and comments.

This commit is contained in:
lightningterror 2020-08-22 22:05:06 +02:00
parent 96c057466b
commit 664559b6d4
2 changed files with 1 additions and 13 deletions

View File

@ -195,7 +195,7 @@ static void CALLBACK GS_changeSaveState( int, const char* filename ) {}
void CALLBACK GS_getTitleInfo2( char* dest, size_t length )
{
// Just return a generic "GS" title -- a plugin actually implementing this feature
// should return a title such as "GSdx" or "ZZogl" instead. --air
// should return a title such as "GSdx" instead. --air
dest[0] = 'G';
dest[1] = 'S';

View File

@ -859,9 +859,6 @@ BOOL CALLBACK pnachWriterProc(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM lParam)
// Gametitle
SetWindowText(GetDlgItem(hWnd, IDC_GAMETITLE), "Insert Game Title.");
// ZeroGS
SetWindowText(GetDlgItem(hWnd, IDC_ZEROGS), "00000000");
// Round mode 1
SendMessage(GetDlgItem(hWnd, IDC_ROUND1), CB_ADDSTRING, 0, (LPARAM)"NEAR");
SendMessage(GetDlgItem(hWnd, IDC_ROUND1), CB_ADDSTRING, 0, (LPARAM)"DOWN");
@ -908,15 +905,6 @@ BOOL CALLBACK pnachWriterProc(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM lParam)
GetWindowText(GetDlgItem(hWnd,IDC_GAMETITLE),chepa,256);
fprintf(fp, "gametitle=%s\n", chepa);
// zerogs
GetWindowText(GetDlgItem(hWnd,IDC_ZEROGS),chepa,256);
int zgs;
sscanf(chepa, "%x", &zgs);
if(zgs != 0)
{
fprintf(fp, "zerogs=%s\n", chepa);
}
// round mode
int round1, round2;
round1 = SendMessage(GetDlgItem(hWnd, IDC_ROUND1), CB_GETCURSEL, 0, 0);