mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: Remove zerogs, zzogl code and comments.
This commit is contained in:
parent
96c057466b
commit
664559b6d4
|
@ -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';
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue