summaryrefslogtreecommitdiff
path: root/apps/plugins/doom
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/doom
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/doom')
-rw-r--r--apps/plugins/doom/rockdoom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/doom/rockdoom.c b/apps/plugins/doom/rockdoom.c
index b68107f8aa..04817d4722 100644
--- a/apps/plugins/doom/rockdoom.c
+++ b/apps/plugins/doom/rockdoom.c
@@ -490,7 +490,7 @@ int Oset_keys()
490 else 490 else
491 { 491 {
492 *keys[result]=translatekey(*keys[result]); 492 *keys[result]=translatekey(*keys[result]);
493 rb->set_option(menu_[result], keys[result], INT, doomkeys, numdoomkeys, NULL ); 493 rb->set_option(menu_[result], keys[result], RB_INT, doomkeys, numdoomkeys, NULL );
494 *keys[result]=translatekey(*keys[result]); 494 *keys[result]=translatekey(*keys[result]);
495 } 495 }
496 } 496 }
@@ -540,7 +540,7 @@ static bool Doptions()
540 if(result==0) 540 if(result==0)
541 Oset_keys(); 541 Oset_keys();
542 else if (result > 0) 542 else if (result > 0)
543 rb->set_option(menu_[result], options[result-1], INT, onoff, 2, NULL ); 543 rb->set_option(menu_[result], options[result-1], RB_INT, onoff, 2, NULL );
544 else 544 else
545 menuquit=1; 545 menuquit=1;
546 } 546 }
@@ -620,7 +620,7 @@ int doom_menu()
620 result = rb->do_menu(&menu, &selected, NULL, false); 620 result = rb->do_menu(&menu, &selected, NULL, false);
621 switch (result) { 621 switch (result) {
622 case 0: /* Game picker */ 622 case 0: /* Game picker */
623 rb->set_option("Game WAD", &gamever, INT, names, status, NULL ); 623 rb->set_option("Game WAD", &gamever, RB_INT, names, status, NULL );
624 break; 624 break;
625 625
626 case 1: /* Addon picker */ 626 case 1: /* Addon picker */