Merge pull request #4293 from 86Box/tc1995_4.2
Fix incompatible pointers of the generic PIT and PCjr's
This commit is contained in:
@@ -772,7 +772,7 @@ speed_changed(void *priv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
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) {
|
if (new_out && !old_out) {
|
||||||
picint(1);
|
picint(1);
|
||||||
|
@@ -156,7 +156,7 @@ machine_available(int m)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
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)
|
if (new_out && !old_out)
|
||||||
picint(1);
|
picint(1);
|
||||||
|
Reference in New Issue
Block a user