summaryrefslogtreecommitdiff
path: root/vdp.h
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-06-29 17:15:08 -0700
committerMike Pavone <pavone@retrodev.com>2013-06-29 17:15:08 -0700
commit48718d1f339e263fb52a35a7a5230d32491b78b8 (patch)
tree16eb423306ce41301c188ffa4ed8193b438e334b /vdp.h
parent6183aae8b8ff8deb39d5e177896ef62bc72df7c0 (diff)
Add support for loading GST format savestates
Diffstat (limited to 'vdp.h')
-rw-r--r--vdp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vdp.h b/vdp.h
index 2f17d6e..d547397 100644
--- a/vdp.h
+++ b/vdp.h
@@ -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);