diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-06-29 17:15:08 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-06-29 17:15:08 -0700 |
commit | 48718d1f339e263fb52a35a7a5230d32491b78b8 (patch) | |
tree | 16eb423306ce41301c188ffa4ed8193b438e334b /vdp.h | |
parent | 6183aae8b8ff8deb39d5e177896ef62bc72df7c0 (diff) |
Add support for loading GST format savestates
Diffstat (limited to 'vdp.h')
-rw-r--r-- | vdp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -156,7 +156,7 @@ void vdp_run_context(vdp_context * context, uint32_t target_cycles); uint32_t vdp_run_to_vblank(vdp_context * context); //runs until the target cycle is reached or the current DMA operation has completed, whicever comes first void vdp_run_dma_done(vdp_context * context, uint32_t target_cycles); -void vdp_load_savestate(vdp_context * context, FILE * state_file); +uint8_t vdp_load_gst(vdp_context * context, FILE * state_file); void vdp_save_state(vdp_context * context, FILE * outfile); int vdp_control_port_write(vdp_context * context, uint16_t value); int vdp_data_port_write(vdp_context * context, uint16_t value); |