Fixed a crash-causing signedness mess in the 420EX code.

This commit is contained in:
OBattler
2023-08-04 16:43:42 +02:00
parent 656805026c
commit 646bc143f3

View File

@@ -167,7 +167,7 @@ i420ex_drb_recalc(i420ex_t *dev)
{
uint32_t boundary;
for (uint8_t i = 4; i >= 0; i--)
for (int8_t i = 4; i >= 0; i--)
row_disable(i);
for (uint8_t i = 0; i <= 4; i++) {