summaryrefslogtreecommitdiff
path: root/input.c
diff options
context:
space:
mode:
authornotaz2011-09-03 00:55:13 +0300
committernotaz2011-09-03 01:01:17 +0300
commitee0a3871f9982215361cd6bb4758eb9a7c7d8413 (patch)
tree6fc70e291e80ac7cda7c7438cb48ca0b89a7879d /input.c
parentd5e0983c10e0ca717603dd1a406ff0d6e450e905 (diff)
downloadpicogpsp-ee0a3871f9982215361cd6bb4758eb9a7c7d8413.tar.gz
picogpsp-ee0a3871f9982215361cd6bb4758eb9a7c7d8413.tar.bz2
picogpsp-ee0a3871f9982215361cd6bb4758eb9a7c7d8413.zip
get rid of GP2X_BUILD checks where they are not really needed
Diffstat (limited to 'input.c')
-rw-r--r--input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input.c b/input.c
index 94c561d..e4c48fd 100644
--- a/input.c
+++ b/input.c
@@ -374,7 +374,7 @@ u32 gamepad_config_map[16] =
BUTTON_ID_MENU // Vol middle
};
-extern u32 gp2x_fps_debug;
+extern u32 fps_debug;
extern u32 gpsp_gp2x_joystick_read(void);
gui_action_type get_gui_input()
@@ -577,7 +577,7 @@ u32 update_input()
break;
case BUTTON_ID_FPS:
- gp2x_fps_debug ^= 1;
+ fps_debug ^= 1;
break;
}