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

Correct load of F3DLP.Rej and F3DLX.Rej ucodes.

Fixed Mortal Kombat 4 Missing 2D elements #1155
This commit is contained in:
Sergey Lipskiy 2016-10-05 16:53:02 +07:00
parent ce5abcb21b
commit 7ab249dd64

View File

@ -284,8 +284,12 @@ void GBIInfo::loadMicrocode(u32 uc_start, u32 uc_dstart, u16 uc_dsize)
current.textureGen = false;
else if (strncmp(&uc_str[14], "F3DZ", 4) == 0)
current.branchLessZ = false;
else if (strncmp(&uc_str[14], "F3DLP.Rej", 9) == 0)
else if (strncmp(&uc_str[14], "F3DLX.Rej", 9) == 0)
current.NoN = true;
else if (strncmp(&uc_str[14], "F3DLP.Rej", 9) == 0) {
current.texturePersp = false;
current.NoN = true;
}
}
else if (strncmp( &uc_str[14], "L3D", 3 ) == 0) {
u32 t = 22;