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
This commit is contained in:
Nobbs66 2021-05-07 08:28:38 -05:00 committed by lightningterror
parent bb09d3fe74
commit e0111195a5
1 changed files with 0 additions and 10 deletions

View File

@ -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;
}