From 882b1c0aae531f233a3ece2007794229501dbba6 Mon Sep 17 00:00:00 2001 From: cam900 Date: Thu, 10 Aug 2023 20:27:30 +0900 Subject: [PATCH] Add C140 status debug window --- src/gui/debug.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/gui/debug.cpp b/src/gui/debug.cpp index 508ad50fe..c578d3a30 100644 --- a/src/gui/debug.cpp +++ b/src/gui/debug.cpp @@ -547,6 +547,13 @@ void putDispatchChip(void* data, int type) { COMMON_CHIP_DEBUG_BOOL; break; } + case DIV_SYSTEM_C140: { + DivPlatformC140* ch=(DivPlatformC140*)data; + ImGui::Text("> C140"); + COMMON_CHIP_DEBUG; + COMMON_CHIP_DEBUG_BOOL; + break; + } default: ImGui::Text("Unimplemented chip! Help!"); break;