summaryrefslogtreecommitdiff
path: root/apps/plugins/xworld
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/xworld
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/xworld')
-rw-r--r--apps/plugins/xworld/sys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/xworld/sys.c b/apps/plugins/xworld/sys.c
index e20322258d..4a80152b70 100644
--- a/apps/plugins/xworld/sys.c
+++ b/apps/plugins/xworld/sys.c
@@ -206,7 +206,7 @@ static void do_video_settings(struct System* sys)
206#else 206#else
207 case 2: 207 case 2:
208#endif 208#endif
209 rb->set_option("Scaling", &sys->settings.scaling_quality, INT, scaling_settings, 209 rb->set_option("Scaling", &sys->settings.scaling_quality, RB_INT, scaling_settings,
210#ifdef HAVE_LCD_COLOR 210#ifdef HAVE_LCD_COLOR
211 3 211 3
212#else 212#else
@@ -225,7 +225,7 @@ static void do_video_settings(struct System* sys)
225#else 225#else
226 case 3: 226 case 3:
227#endif 227#endif
228 rb->set_option("Rotation", &sys->settings.rotation_option, INT, rotation_settings, 3, NULL); 228 rb->set_option("Rotation", &sys->settings.rotation_option, RB_INT, rotation_settings, 3, NULL);
229 if(sys->settings.rotation_option && 229 if(sys->settings.rotation_option &&
230 sys->settings.zoom) 230 sys->settings.zoom)
231 { 231 {