Fixed a compile-breaking mistake in pic.c.

This commit is contained in:
OBattler
2020-11-17 19:44:15 +01:00
parent 239a84fd68
commit 85679b8ecd

View File

@@ -197,7 +197,7 @@ pic_update_pending(void)
else
pic.irr &= ~(1 << pic2.icw3);
pic_pending = (find_best_interrupt(&pic) != -1);
pic.int_pending = (find_best_interrupt(&pic) != -1);
return;
}