From 4ec006f57dd81ecc836c616b9b6b9efb88d007a3 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Sat, 7 Aug 2021 22:21:34 +0700 Subject: [PATCH] Debug print TextureDetail mode in gSPSetOtherMode_H --- src/gSP.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gSP.cpp b/src/gSP.cpp index 08a8730f..1735f3f1 100644 --- a/src/gSP.cpp +++ b/src/gSP.cpp @@ -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");