diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-02-16 19:13:00 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-02-16 19:13:00 -0800 |
commit | 9fa26d6cd1365baea2f06c97c28cb0d451e6fc75 (patch) | |
tree | 21d5257128c94731665065d04090923bbd33836d | |
parent | bad18594ed92f321cbc418be8937297be0340b97 (diff) |
Make stateview and vgmplay compile again
-rw-r--r-- | stateview.c | 2 | ||||
-rw-r--r-- | vgmplay.c | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/stateview.c b/stateview.c index 517d4c2..d96c39f 100644 --- a/stateview.c +++ b/stateview.c @@ -16,7 +16,7 @@ io_port gamepad_2; uint8_t reset = 1; uint8_t busreq = 0; -uint16_t ram[RAM_WORDS]; +//uint16_t ram[RAM_WORDS]; uint8_t z80_ram[Z80_RAM_BYTES]; uint16_t read_dma_value(uint32_t address) @@ -42,6 +42,18 @@ void handle_joy_dpad(int joystick, int dpadnum, uint8_t value) { } +void handle_mouse_moved(int mouse, uint16_t x, uint16_t y, int16_t deltax, int16_t deltay) +{ +} + +void handle_mousedown(int mouse, int button) +{ +} + +void handle_mouseup(int mouse, int button) +{ +} + int headless = 0; #define CYCLE_LIMIT MCLKS_NTSC/60 |