From a93923cbffbb95213df94c4e97359089c32d16ac Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Sat, 10 Aug 2013 18:12:39 +0700 Subject: [PATCH] Add support for Mario Kart microcode --- GBI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GBI.cpp b/GBI.cpp index ea4809bf..9a0920a1 100644 --- a/GBI.cpp +++ b/GBI.cpp @@ -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;