mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 01:35:07 +00:00
Reduce unnecessary line
This commit is contained in:
parent
2412f688de
commit
0d5962bb08
1 changed files with 1 additions and 2 deletions
|
@ -209,7 +209,7 @@ void FurnaceGUI::drawDebug() {
|
||||||
ImGui::TableNextColumn();
|
ImGui::TableNextColumn();
|
||||||
ImGui::Text("Data");
|
ImGui::Text("Data");
|
||||||
|
|
||||||
for (int j=0; j<e->getChannelCount(system); j++) {
|
for (int j=0; j<e->getChannelCount(system); j++, c++) {
|
||||||
ImGui::TableNextRow();
|
ImGui::TableNextRow();
|
||||||
// channel
|
// channel
|
||||||
ImGui::TableNextColumn();
|
ImGui::TableNextColumn();
|
||||||
|
@ -228,7 +228,6 @@ void FurnaceGUI::drawDebug() {
|
||||||
// data
|
// data
|
||||||
ImGui::TableNextColumn();
|
ImGui::TableNextColumn();
|
||||||
ImGui::Text("%d",e->getOscBuffer(c)->data[needle]);
|
ImGui::Text("%d",e->getOscBuffer(c)->data[needle]);
|
||||||
c++;
|
|
||||||
}
|
}
|
||||||
ImGui::EndTable();
|
ImGui::EndTable();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue