diff options
-rw-r--r-- | stateview.c | 4 | ||||
-rw-r--r-- | vgmplay.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/stateview.c b/stateview.c index cf2da7c..5c5ec73 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_added(int joystick) +{ +} + void handle_mousedown(int mouse, int button) { } @@ -42,6 +42,10 @@ void handle_joy_dpad(int joystick, int dpadnum, uint8_t value) { } +void handle_joy_added(int joystick) +{ +} + void handle_mouse_moved(int mouse, uint16_t x, uint16_t y, int16_t deltax, int16_t deltay) { } |