| Previous | 199869 Revisions | Next |
| r31518 Tuesday 5th August, 2014 at 14:50:49 UTC by Tafoid |
|---|
| (MESS) mc1000.c: Correction to the cassette input [Emerson Costa] |
| [src/mess/drivers] | mc1000.c |
| r31517 | r31518 | |
|---|---|---|
| 311 | 311 | |
| 312 | 312 | data = (m_modifiers->read() & 0xc0) | (data & 0x3f); |
| 313 | 313 | |
| 314 | if (m_cassette->input() < +0.0) data &= 0x7f; | |
| 314 | if ((m_cassette->get_state() & CASSETTE_MASK_UISTATE) == CASSETTE_PLAY) | |
| 315 | { | |
| 316 | if (m_cassette->input() >= +0.0) data &= 0x7f; | |
| 317 | } | |
| 315 | 318 | |
| 316 | 319 | return data; |
| 317 | 320 | } |
| Previous | 199869 Revisions | Next |