DivSongTimestamps, part 4
This commit is contained in:
parent
b9b7c97469
commit
cc5b1d150f
2 changed files with 55 additions and 31 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue