22 lines
1.2 KiB
Plaintext
22 lines
1.2 KiB
Plaintext
$OpenBSD: patch-plugins_gtkui_prefwin_c,v 1.2 2013/01/03 11:54:49 shadchin Exp $
|
|
--- plugins/gtkui/prefwin.c.orig Fri Oct 19 21:58:50 2012
|
|
+++ plugins/gtkui/prefwin.c Tue Oct 23 22:32:15 2012
|
|
@@ -496,7 +496,7 @@ on_preferences_activate (GtkMenuItem
|
|
// output plugin selection
|
|
combobox = GTK_COMBO_BOX (lookup_widget (w, "pref_output_plugin"));
|
|
|
|
- const char *outplugname = deadbeef->conf_get_str_fast ("output_plugin", "ALSA output plugin");
|
|
+ const char *outplugname = deadbeef->conf_get_str_fast ("output_plugin", "sndio output plugin");
|
|
DB_output_t **out_plugs = deadbeef->plug_get_output_list ();
|
|
for (int i = 0; out_plugs[i]; i++) {
|
|
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combobox), out_plugs[i]->plugin.name);
|
|
@@ -720,7 +720,7 @@ on_pref_output_plugin_changed (GtkComboBox
|
|
DB_output_t *new = NULL;
|
|
|
|
deadbeef->conf_lock ();
|
|
- const char *outplugname = deadbeef->conf_get_str_fast ("output_plugin", "ALSA output plugin");
|
|
+ const char *outplugname = deadbeef->conf_get_str_fast ("output_plugin", "sndio output plugin");
|
|
for (int i = 0; out_plugs[i]; i++) {
|
|
if (!strcmp (out_plugs[i]->plugin.name, outplugname)) {
|
|
prev = out_plugs[i];
|