diff --git a/pcsx2/PluginManager.cpp b/pcsx2/PluginManager.cpp index 51acb622a4..b2c6314a9c 100644 --- a/pcsx2/PluginManager.cpp +++ b/pcsx2/PluginManager.cpp @@ -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'; diff --git a/pcsx2/windows/cheats/browser.cpp b/pcsx2/windows/cheats/browser.cpp index 6f9f085e9c..9a0f6e7e7f 100644 --- a/pcsx2/windows/cheats/browser.cpp +++ b/pcsx2/windows/cheats/browser.cpp @@ -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);