summaryrefslogtreecommitdiff
path: root/vdp.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2017-04-26 22:16:12 -0700
committerMichael Pavone <pavone@retrodev.com>2017-04-26 22:16:12 -0700
commit3f81efc2e81b4118324f6043a7c6dc87426206bb (patch)
tree599ac17ac3a165c6a7af737153ab858ae14b4565 /vdp.h
parent174396b1c744e9bd3ac438f8660f25cd59568b4a (diff)
Small tweak to how SAT cache updates are done. Mostly fixes the rotating cube scene in Overdrive 2
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 71c6c9c..f16f5e8 100644
--- a/vdp.h
+++ b/vdp.h
@@ -239,6 +239,6 @@ void vdp_print_reg_explain(vdp_context * context);
void latch_mode(vdp_context * context);
uint32_t vdp_cycles_to_frame_end(vdp_context * context);
void write_cram(vdp_context * context, uint16_t address, uint16_t value);
-void write_vram_byte(vdp_context *context, uint32_t address, uint8_t value);
+void vdp_check_update_sat_byte(vdp_context *context, uint32_t address, uint8_t value);
#endif //VDP_H_