1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-06-30 08:24:05 +00:00

Debug print TextureDetail mode in gSPSetOtherMode_H

This commit is contained in:
Sergey Lipskiy 2021-08-07 22:21:34 +07:00
parent 3aeecd4cfe
commit 4ec006f57d

View File

@ -1872,6 +1872,11 @@ void gSPSetOtherMode_H(u32 _length, u32 _shift, u32 _data)
strRes.append((gDP.otherMode.h & 0x00010000) ? "yes | " : "no | ");
}
if (mask & 0x00060000) {
strRes.append(TextureDetailText[gDP.otherMode.textureDetail]);
strRes.append(" | ");
}
if (mask & 0x00080000) {
strRes.append("Persp_en : ");
strRes.append((gDP.otherMode.h & 0x00080000) ? "yes" : "no");