Assorted warning fixes

This commit is contained in:
Henrik Rydgård
2026-06-15 14:15:31 +02:00
parent fbf2ac91a8
commit d3039271c2
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -192,7 +192,7 @@ void DrawTexturesWindow(ImConfig &cfg, TextureCacheCommon *textureCache) {
ImGui::Text("Addr: %08x: %dx%d, %d mips, %s", (uint32_t)(cfg.selectedTexId & 0xFFFFFFFF), w, h, entry->maxLevel + 1, GeTextureFormatToString((GETextureFormat)entry->format));
}
ImGui::Text("Stride: %d", entry->bufw);
ImGui::Text("Status: %08x: %s", entry->status, TexStatusToString(entry->status).c_str());
ImGui::Text("Status: %08x: %s", (u32)entry->status, TexStatusToString(entry->status).c_str());
ImGui::Text("Hash: %08x", entry->fullhash);
ImGui::Text("CLUT Hash: %08x", entry->cluthash);
ImGui::Text("MaxSeenV: %08x", entry->maxSeenV);
@@ -211,7 +211,7 @@ void DrawTexturesWindow(ImConfig &cfg, TextureCacheCommon *textureCache) {
ImGui::Text("Key: %08x_%08x", (u32)(desc.cachekey >> 32), (u32)desc.cachekey);
ImGui::Text("Hashfiles: %s", desc.hashfiles.c_str());
ImGui::Text("Base: %s", desc.basePath.c_str());
ImGui::Text("Alpha status: %02x", entry->replacedTexture->AlphaStatus());
ImGui::Text("Alpha status: %d", (int)entry->replacedTexture->AlphaStatus());
}
} else {
ImGui::Text("Not replaced");
+2
View File
@@ -324,6 +324,8 @@ void RemoteISOScreen::sendMessage(UIMessage message, const char *value) {
ERROR_LOG(Log::UI, "Unknown permission granted: %s", value);
}
break;
default:
break;
}
}