From e0111195a5dc7c752e83903d41d2b7e8b9c54311 Mon Sep 17 00:00:00 2001 From: Nobbs66 Date: Fri, 7 May 2021 08:28:38 -0500 Subject: [PATCH] Fix Emulated PSX GPU Version The PS2 emulates a version 0 PSX GPU rather than a version 2 GPU. This removes the extra v2 commands --- pcsx2/ps2/pgif.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pcsx2/ps2/pgif.cpp b/pcsx2/ps2/pgif.cpp index 12b0eb653f..d252550878 100644 --- a/pcsx2/ps2/pgif.cpp +++ b/pcsx2/ps2/pgif.cpp @@ -403,17 +403,7 @@ u32 immRespHndl(u32 cmd, u32 data) case 0x05: data = pgif4reg & 0x003FFFFF; break; //Read Draw offset ;GP0(E5h) ;22bit - case 0x06: - break; //Returns Nothing (old value in GPUREAD remains unchanged) - case 0x07: - data = 0x2; - break; //Read GPU Type (usually 2) See "GPU Versions" notes below - case 0x08: - data = 0; - break; //Unknown (Returns 00000000h) - //default: //Returns Nothing (old value in GPUREAD remains unchanged) } - //TODO: Is the PS2 "PS1 GPU" really a "version 2"-GPU??? return data; }