From d0b7c086ca472bf5f775170f3264139733b0404d Mon Sep 17 00:00:00 2001 From: "Geoffrey D. Bennett" Date: Fri, 19 Jan 2024 18:25:59 +1030 Subject: [PATCH] Remove "Analogue" from small Gen 3 device input labels --- src/iface-no-mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iface-no-mixer.c b/src/iface-no-mixer.c index 4ad06e9..280dc3f 100644 --- a/src/iface-no-mixer.c +++ b/src/iface-no-mixer.c @@ -48,7 +48,7 @@ GtkWidget *create_iface_no_mixer_main(struct alsa_card *card) { for (int i = 0; i < 2; i++) { char s[20]; - snprintf(s, 20, "Analogue %d", i + 1); + snprintf(s, 20, "%d", i + 1); GtkWidget *label = gtk_label_new(s); gtk_grid_attach(GTK_GRID(input_grid), label, i, 0, 1, 1); }