From 7f61cc15ea126a198419a91f1bc595c0e7287c8e Mon Sep 17 00:00:00 2001 From: Chris Young Date: Tue, 14 Nov 2017 23:19:00 +0000 Subject: Fix radio button labels on OS3 (thx Mikhail Malyshev) --- frontends/amiga/gui_options.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'frontends/amiga') diff --git a/frontends/amiga/gui_options.c b/frontends/amiga/gui_options.c index 8a9fd7bd7..203e9a02c 100755 --- a/frontends/amiga/gui_options.c +++ b/frontends/amiga/gui_options.c @@ -270,9 +270,8 @@ static void ami_gui_opts_array_to_list(struct List *list, const char *array[], i node = AllocChooserNode(CNA_Text, array[i], TAG_DONE); break; case NSA_LIST_RADIO: - /* Note: RBNA_Labels is RBNA_Label in OS4 - * Also note: These labels don't work (FIXME) */ - node = AllocRadioButtonNode(RBNA_Labels, array[i], TAG_DONE); + /* Note: RBNA_Labels is RBNA_Label in OS4 */ + node = AllocRadioButtonNode(0, RBNA_Labels, array[i], TAG_DONE); break; default: break; -- cgit v1.2.3