DivSongTimestamps, part 4

This commit is contained in:
tildearrow 2025-10-29 03:55:57 -05:00
parent b9b7c97469
commit cc5b1d150f
2 changed files with 55 additions and 31 deletions

View file

@ -221,6 +221,13 @@ void FurnaceGUI::drawDebug() {
ImGui::Text("loop region: %d:%d - %d:%d",ts.loopStart.order,ts.loopStart.row,ts.loopEnd.order,ts.loopEnd.row);
ImGui::Text("loop start time: %d.%06d",ts.loopStartTime.seconds,ts.loopStartTime.micros);
if (ImGui::TreeNode("Maximum rows")) {
for (int i=0; i<e->curSubSong->ordersLen; i++) {
ImGui::Text("- Order %d: %d",i,ts.maxRow[i]);
}
ImGui::TreePop();
}
ImGui::Checkbox("Enable row timestamps (in pattern view)",&debugRowTimestamps);
ImGui::TreePop();