From 8cc3266b2a172a51dc12d05e8e1a06485b895e48 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Fri, 22 Sep 2023 09:57:48 -0400 Subject: Settings: Rename INT/BOOL setting type enum to RB_INT/RB_BOOL ....Because INT and BOOL are already defined in mingw32. Change-Id: I28ab8189c00002c8f68bc9d0c23d2ae78d9e33d0 --- apps/plugins/reversi/reversi-gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugins/reversi/reversi-gui.c') diff --git a/apps/plugins/reversi/reversi-gui.c b/apps/plugins/reversi/reversi-gui.c index 74dd98b676..e4bb232a26 100644 --- a/apps/plugins/reversi/reversi-gui.c +++ b/apps/plugins/reversi/reversi-gui.c @@ -400,7 +400,7 @@ static bool reversi_gui_choose_strategy( } result = - rb->set_option(prompt, &index, INT, strategy_settings, num_items, NULL); + rb->set_option(prompt, &index, RB_INT, strategy_settings, num_items, NULL); (*player) = strategy_values[index]; @@ -450,7 +450,7 @@ static bool reversi_gui_menu(void) { break; } } - rb->set_option(MENU_TEXT_WRAP_MODE, &index, INT, + rb->set_option(MENU_TEXT_WRAP_MODE, &index, RB_INT, cursor_wrap_mode_settings, 3, NULL); cursor_wrap_mode = cursor_wrap_mode_values[index]; break; -- cgit v1.2.3