Audio debug imgui

This commit is contained in:
PJB3005
2026-03-14 17:35:09 +01:00
parent e86aebfcd8
commit 0bd5ec4da5
3 changed files with 7 additions and 1 deletions
+2
View File
@@ -16,6 +16,7 @@ namespace dusk {
ImGui::MenuItem("Stub Log", "F5", &m_showStubLog);
ImGui::MenuItem("Camera", "F6", &m_showCameraOverlay);
ImGui::MenuItem("Map Loader", nullptr, &m_showMapLoader);
ImGui::MenuItem("Audio Debug", "F7", &m_showAudioDebug);
ImGui::EndMenu();
}
@@ -25,6 +26,7 @@ namespace dusk {
ShowHeapOverlay();
ShowStubLog();
ShowMapLoader();
ShowAudioDebug();
DuskDebugPad(); // temporary, remove later
}