summaryrefslogtreecommitdiff
path: root/apps/plugins/reversi
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2023-09-22 09:57:48 -0400
committerSolomon Peachy <pizza@shaftnet.org>2023-09-22 10:00:46 -0400
commit8cc3266b2a172a51dc12d05e8e1a06485b895e48 (patch)
treef45e7c9e273037d2f4ea0c72b740c4241458eeb2 /apps/plugins/reversi
parentcb3a6877fcbb001a8ee9afd3e4a25579ac40f805 (diff)
downloadrockbox-8cc3266b2a172a51dc12d05e8e1a06485b895e48.tar.gz
rockbox-8cc3266b2a172a51dc12d05e8e1a06485b895e48.zip
Settings: Rename INT/BOOL setting type enum to RB_INT/RB_BOOL
....Because INT and BOOL are already defined in mingw32. Change-Id: I28ab8189c00002c8f68bc9d0c23d2ae78d9e33d0
Diffstat (limited to 'apps/plugins/reversi')
-rw-r--r--apps/plugins/reversi/reversi-gui.c4
1 files changed, 2 insertions, 2 deletions
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(
400 } 400 }
401 401
402 result = 402 result =
403 rb->set_option(prompt, &index, INT, strategy_settings, num_items, NULL); 403 rb->set_option(prompt, &index, RB_INT, strategy_settings, num_items, NULL);
404 404
405 (*player) = strategy_values[index]; 405 (*player) = strategy_values[index];
406 406
@@ -450,7 +450,7 @@ static bool reversi_gui_menu(void) {
450 break; 450 break;
451 } 451 }
452 } 452 }
453 rb->set_option(MENU_TEXT_WRAP_MODE, &index, INT, 453 rb->set_option(MENU_TEXT_WRAP_MODE, &index, RB_INT,
454 cursor_wrap_mode_settings, 3, NULL); 454 cursor_wrap_mode_settings, 3, NULL);
455 cursor_wrap_mode = cursor_wrap_mode_values[index]; 455 cursor_wrap_mode = cursor_wrap_mode_values[index];
456 break; 456 break;