Fix incompatible pointers of the generic PIT and PCjr's

So that the build compiles fine.
This commit is contained in:
TC1995
2024-03-22 23:24:58 +01:00
parent 242747df52
commit 36ecc17551
2 changed files with 2 additions and 2 deletions

View File

@@ -772,7 +772,7 @@ speed_changed(void *priv)
}
void
pit_irq0_timer_pcjr(int new_out, int old_out)
pit_irq0_timer_pcjr(int new_out, int old_out, UNUSED(void *priv))
{
if (new_out && !old_out) {
picint(1);

View File

@@ -156,7 +156,7 @@ machine_available(int m)
}
void
pit_irq0_timer(int new_out, int old_out)
pit_irq0_timer(int new_out, int old_out, UNUSED(void *priv))
{
if (new_out && !old_out)
picint(1);