mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
Fixed regression
This commit is contained in:
parent
90e132d022
commit
1d9b72e13e
@ -724,17 +724,18 @@ void saturn_state::cd_exec_command( void )
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* reset false filter output conditions */
|
/* reset false filter output conditions */
|
||||||
|
/* TODO: check these two. */
|
||||||
if(cr1 & 0x80)
|
if(cr1 & 0x80)
|
||||||
{
|
{
|
||||||
for(i=0;i<MAX_FILTERS;i++)
|
for(i=0;i<MAX_FILTERS;i++)
|
||||||
filters[i].condfalse = 0xff;
|
filters[i].condfalse = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* reset true filter output conditions */
|
/* reset true filter output conditions */
|
||||||
if(cr1 & 0x40)
|
if(cr1 & 0x40)
|
||||||
{
|
{
|
||||||
for(i=0;i<MAX_FILTERS;i++)
|
for(i=0;i<MAX_FILTERS;i++)
|
||||||
filters[i].condtrue = 0xff;
|
filters[i].condtrue = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* reset filter conditions*/
|
/* reset filter conditions*/
|
||||||
|
Loading…
Reference in New Issue
Block a user