1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00

Add support for Mario Kart microcode

This commit is contained in:
Sergey Lipskiy 2013-08-10 18:12:39 +07:00
parent efee40c2c7
commit a93923cbff

View File

@ -390,7 +390,7 @@ MicrocodeInfo *GBI_DetectMicrocode( u32 uc_start, u32 uc_dstart, u16 uc_dsize )
if (strncmp( &uc_str[14], "F3D", 3 ) == 0)
{
if (uc_str[28] == '1')
if (uc_str[28] == '1' || strncmp(&uc_str[28], "0.95", 4) == 0)
type = F3DEX;
else if (uc_str[31] == '2')
type = F3DEX2;