no NOT nice

This commit is contained in:
tildearrow 2024-03-03 03:19:19 -05:00
parent 2eb8099cb4
commit 01c5e9a913
4 changed files with 20 additions and 1 deletions

View file

@ -29,7 +29,15 @@ void FurnaceGUI::drawMemory() {
}
if (!memoryOpen) return;
if (ImGui::Begin("Memory Composition",&memoryOpen,globalWinFlags)) {
ImGui::Text("Contents here...");
for (int i=0; i<e->song.systemLen; i++) {
DivDispatch* dispatch=e->getDispatch(i);
for (int j=0; j<4; j++) {
const DivMemoryComposition* mc=dispatch->getMemCompo(j);
if (mc==NULL) break;
ImGui::Text("%s: %s",e->getSystemName(e->song.system[i]),mc->name.c_str());
}
}
}
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_MEMORY;
ImGui::End();