1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Fix detection of "RSP Gfx ucode F3DEX.NoN 0.96"

Game: Chou Kuukan Nighter Pro Yakyuu King
This commit is contained in:
Sergey Lipskiy 2014-11-04 11:37:36 +06:00
parent 3d75ca4b18
commit 7a93d20011

View File

@ -230,7 +230,7 @@ void GBIInfo::loadMicrocode(u32 uc_start, u32 uc_dstart, u16 uc_dsize)
current.NoN = (strncmp( &uc_str[20], ".NoN", 4 ) == 0);
if (strncmp( &uc_str[14], "F3D", 3 ) == 0) {
if (uc_str[28] == '1' || strncmp(&uc_str[28], "0.95", 4) == 0)
if (uc_str[28] == '1' || strncmp(&uc_str[28], "0.95", 4) == 0 || strncmp(&uc_str[28], "0.96", 4) == 0)
type = F3DEX;
else if (uc_str[31] == '2')
type = F3DEX2;