Skip to content

Commit

Permalink
GUI: settings grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
tildearrow committed Oct 5, 2023
1 parent b032c18 commit 7736ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -965,8 +965,8 @@ void FurnaceGUI::drawSettings() {
TAAudioDesc& audioWant=e->getAudioDescWant();
TAAudioDesc& audioGot=e->getAudioDescGot();

ImGui::Text("want: %d samples @ %.0fHz (%d channels)",audioWant.bufsize,audioWant.rate,audioWant.outChans);
ImGui::Text("got: %d samples @ %.0fHz (%d channels)",audioGot.bufsize,audioGot.rate,audioWant.outChans);
ImGui::Text("want: %d samples @ %.0fHz (%d %s)",audioWant.bufsize,audioWant.rate,audioWant.outChans,(audioWant.outChans==1)?"channel":"channels");
ImGui::Text("got: %d samples @ %.0fHz (%d %s)",audioGot.bufsize,audioGot.rate,audioWant.outChans,(audioWant.outChans==1)?"channel":"channels");

// SUBSECTION MIXING
CONFIG_SUBSECTION("Mixing");
Expand Down

0 comments on commit 7736ced

Please sign in to comment.