Fix another warn in 808x.c

This commit is contained in:
Jasmine Iwanek
2025-07-28 01:52:40 -04:00
parent 6d6d5931bf
commit a96146742e

View File

@@ -541,7 +541,7 @@ pfq_read(void)
{
uint8_t temp = pfq[0];
for (uint16_t i = 0; i < (pfq_size - 1); i++)
for (int i = 0; i < (pfq_size - 1); i++)
pfq[i] = pfq[i + 1];
pfq_pos--;
cpu_state.pc = (cpu_state.pc + 1) & 0xffff;