diff vdp.h @ 1333:69c25e1188e5

Small tweak to how SAT cache updates are done. Mostly fixes the rotating cube scene in Overdrive 2
author Michael Pavone <pavone@retrodev.com>
date Wed, 26 Apr 2017 22:16:12 -0700
parents 58bfbed6cdb5
children 26e72126f9d1
line wrap: on
line diff
--- a/vdp.h	Wed Apr 26 21:55:12 2017 -0700
+++ b/vdp.h	Wed Apr 26 22:16:12 2017 -0700
@@ -239,6 +239,6 @@
 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_