Fixed LPT DAC and Disney Sound Source status to account for lpt.c no longer always setting the ERROR bit.

This commit is contained in:
OBattler
2020-10-17 14:10:36 +02:00
parent ecafe017ab
commit cf69cfa5c3
2 changed files with 2 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ static uint8_t dss_read_status(void *p)
{
dss_t *dss = (dss_t *)p;
return dss->status;
return dss->status | 0x0f;
}