summaryrefslogtreecommitdiff
path: root/apps/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'apps/graphics')
-rw-r--r--apps/graphics/traveler/src/trv_input.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/graphics/traveler/src/trv_input.c b/apps/graphics/traveler/src/trv_input.c
index 9d9d5435b..15b41ad4f 100644
--- a/apps/graphics/traveler/src/trv_input.c
+++ b/apps/graphics/traveler/src/trv_input.c
@@ -599,8 +599,7 @@ void trv_input_read(void)
}
}
- g_trv_input.dooropen = ((sample.as_buttons & AJOY_BUTTON_SELECT) != 0);
-
+ g_trv_input.dooropen = ((sample.as_buttons & AJOY_BUTTON_SELECT_BIT) != 0);
#elif defined(CONFIG_GRAPHICS_TRAVELER_DJOYSTICK)
struct djoy_buttonset_t buttonset;
@@ -727,7 +726,7 @@ void trv_input_read(void)
break;
}
- g_trv_input.dooropen = ((buttonset & DJOY_BUTTON_SELECT) != 0);
+ g_trv_input.dooropen = ((buttonset & DJOY_BUTTON_SELECT_BIT) != 0);
#endif /* CONFIG_GRAPHICS_TRAVELER_DJOYSTICK */
#elif defined(CONFIG_GRAPHICS_TRAVELER_NX_XYINPUT)