mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +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::Text("Data");
|
||||
|
||||
for (int j=0; j<e->getChannelCount(system); j++) {
|
||||
for (int j=0; j<e->getChannelCount(system); j++, c++) {
|
||||
ImGui::TableNextRow();
|
||||
// channel
|
||||
ImGui::TableNextColumn();
|
||||
|
@ -228,7 +228,6 @@ void FurnaceGUI::drawDebug() {
|
|||
// data
|
||||
ImGui::TableNextColumn();
|
||||
ImGui::Text("%d",e->getOscBuffer(c)->data[needle]);
|
||||
c++;
|
||||
}
|
||||
ImGui::EndTable();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue