From e4d5b1dd8feaf48f3eb843a79b85e1d61f900361 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sat, 28 Jan 2017 23:50:15 -0800 Subject: Fix vgmplay and stateview targets --- stateview.c | 4 ++++ vgmplay.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/stateview.c b/stateview.c index 5c5ec73..238d5c0 100644 --- a/stateview.c +++ b/stateview.c @@ -59,6 +59,10 @@ void handle_joy_dpad(int joystick, int dpadnum, uint8_t value) { } +void handle_joy_axis(int joystick, int axis, int16_t value) +{ +} + void handle_joy_added(int joystick) { } diff --git a/vgmplay.c b/vgmplay.c index 7bfdd57..b8b5332 100644 --- a/vgmplay.c +++ b/vgmplay.c @@ -42,6 +42,10 @@ void handle_joy_dpad(int joystick, int dpadnum, uint8_t value) { } +void handle_joy_axis(int joystick, int axis, int16_t value) +{ +} + void handle_joy_added(int joystick) { } -- cgit v1.2.3