model2.cpp: zeroguna black screen fix (nw)

This commit is contained in:
angelosa 2018-03-08 16:05:32 +01:00
parent 05e851cc83
commit bca634d4e7

View File

@ -554,7 +554,9 @@ READ32_MEMBER(model2_state::fifoctl_r)
}
// #### 1 if fifo empty, zerogun needs | 0x04 set
return r | 0x04;
// TODO: 0x04 is probably fifo full, zeroguna stalls with a fresh nvram with that enabled!
return r;
// return r | 0x04;
}
READ32_MEMBER(model2_state::videoctl_r)