Zack Buhman 54f09bad01 ta_fifo_polygon_converter: properly calculate ta_next_opb_offset
The main issue with the previous code:

  constexpr uint32_t tiles = (640 / 32) * (320 / 32);

Should have been:

  constexpr uint32_t tiles = (640 / 32) * (480 / 32);

The consequence of this is some OPBs were being overwritten by
TA_NEXT_OPB, causing corruption (missing triangles, incomplete
drawings) in some tiles.
2023-12-25 21:59:26 +08:00
..
2023-12-24 17:48:20 +08:00
2023-12-24 17:48:20 +08:00
2023-12-24 16:24:27 +08:00
2023-12-17 23:04:19 +08:00
2023-12-17 22:45:52 +08:00
2023-12-17 22:45:52 +08:00
2023-12-17 23:04:19 +08:00