Skip to content

Commit

Permalink
core vdp, change cram write sync
Browse files Browse the repository at this point in the history
  • Loading branch information
irixxxx committed Jun 22, 2024
1 parent 256b738 commit c3a84ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pico/videoport.c
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ PICO_INTERNAL_ASM void PicoVideoWrite(u32 a,unsigned short d)
// since the A/B tile row to be read depends on it. E.g. Skitchin, OD2
// in contrast, CRAM writes would have an immediate effect on the current
// pixel. XXX think about different offset values for different RAM types
PicoVideoSync(InHblank(30));
PicoVideoSync(InHblank(pvid->type == 3 ? 103 : 30)); // cram in Toy Story

if (!(PicoIn.opt&POPT_DIS_VDP_FIFO))
{
Expand Down

0 comments on commit c3a84ac

Please sign in to comment.