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.
Description
No description provided
Languages
C
61.4%
C++
22.4%
Logos
13.1%
Python
2.2%
Makefile
0.4%
Other
0.3%