commit fc5ed17074d77e0c09d821c816521889dae41fbc
parent 1240f8d6ae05e3ab1720ddb578cf9da1091ddbd9
Author: Olav Sørensen <olav.sorensen@live.no>
Date: Tue, 16 Jan 2024 13:56:43 +0100
Fix wrong word in error string
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ft2_audioselector.c b/src/ft2_audioselector.c
@@ -267,7 +267,7 @@ bool testAudioDeviceListsMouseDown(void)
strcpy(audio.currOutputDevice, devString);
if (!setNewAudioSettings())
- okBox(0, "System message", "Couldn't open audio input device!", NULL);
+ okBox(0, "System message", "Couldn't open audio output device!", NULL);
else
drawAudioOutputList();
}