diff options
Diffstat (limited to 'src/setup/txt_mouseinput.c')
-rw-r--r-- | src/setup/txt_mouseinput.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/setup/txt_mouseinput.c b/src/setup/txt_mouseinput.c index c45bdc2e..6eee78cd 100644 --- a/src/setup/txt_mouseinput.c +++ b/src/setup/txt_mouseinput.c @@ -94,7 +94,7 @@ static void GetMouseButtonDescription(int button, char *buf) } } -static void TXT_MouseInputDrawer(TXT_UNCAST_ARG(mouse_input), int selected) +static void TXT_MouseInputDrawer(TXT_UNCAST_ARG(mouse_input)) { TXT_CAST_ARG(txt_mouse_input_t, mouse_input); char buf[20]; @@ -109,7 +109,7 @@ static void TXT_MouseInputDrawer(TXT_UNCAST_ARG(mouse_input), int selected) GetMouseButtonDescription(*mouse_input->variable, buf); } - TXT_SetWidgetBG(mouse_input, selected); + TXT_SetWidgetBG(mouse_input); TXT_FGColor(TXT_COLOR_BRIGHT_WHITE); TXT_DrawString(buf); |