From cb8dd39f3162078498d88d05a1e36acdc3ef189b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 26 Apr 2025 16:11:51 +0200 Subject: [PATCH] Allow SchedRR for I/O threads (fix copy/paste typo) --- gtk2_ardour/rc_option_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index e9a59396aa..e9a734e129 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -4968,7 +4968,7 @@ These settings will only take effect after %1 is restarted.\n\ ); iotp->add (0, _("No priority")); iotp->add (1, _("Realtime (FIFO)")); - iotp->add (1, _("Realtime (Round Robin)")); + iotp->add (2, _("Realtime (Round Robin)")); add_option (_("Performance"), iotp); #endif }