Skip to content

Commit d7478f4

Browse files
committed
[debugger] Improve Suzy SCB viewer
1 parent ff7ecb6 commit d7478f4

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

platforms/shared/desktop/gui_debug_scb_viewer.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,10 @@ void gui_debug_window_scb_viewer(void)
414414
ImGui::TextColored(orange, " VOFF:"); ImGui::SameLine(); ImGui::Text("%d", voff);
415415
if (!entry.skipped)
416416
{
417-
ImGui::TextColored(cyan, "Sprite:"); ImGui::SameLine();
418-
ImGui::Text("(%d, %d) %dx%d", entry.hpos, entry.vpos, w, h);
417+
ImGui::TextColored(violet, "POS:"); ImGui::SameLine();
418+
ImGui::Text("(%d, %d)", entry.hpos, entry.vpos); ImGui::SameLine();
419+
ImGui::TextColored(violet, " SIZE:"); ImGui::SameLine();
420+
ImGui::Text("%dx%d", w, h);
419421
}
420422

421423
ImGui::PopFont();

0 commit comments

Comments
 (0)