mirror of
https://github.com/holub/mame
synced 2025-05-21 21:29:15 +03:00
Fix compilation. No whatsnew.
This commit is contained in:
parent
2691e9502c
commit
ca5e8764f2
@ -284,7 +284,7 @@ INLINE void pr8210_add_command(UINT8 command)
|
|||||||
|
|
||||||
static TIMER_CALLBACK( pr8210_bit_off_callback )
|
static TIMER_CALLBACK( pr8210_bit_off_callback )
|
||||||
{
|
{
|
||||||
const device_config *laserdisc = ptr;
|
const device_config *laserdisc = (const device_config *)ptr;
|
||||||
|
|
||||||
/* deassert the control line */
|
/* deassert the control line */
|
||||||
laserdisc_line_w(laserdisc, LASERDISC_LINE_CONTROL, CLEAR_LINE);
|
laserdisc_line_w(laserdisc, LASERDISC_LINE_CONTROL, CLEAR_LINE);
|
||||||
@ -294,7 +294,7 @@ static TIMER_CALLBACK( pr8210_bit_off_callback )
|
|||||||
static TIMER_CALLBACK( pr8210_bit_callback )
|
static TIMER_CALLBACK( pr8210_bit_callback )
|
||||||
{
|
{
|
||||||
attotime duration = ATTOTIME_IN_MSEC(30);
|
attotime duration = ATTOTIME_IN_MSEC(30);
|
||||||
const device_config *laserdisc = ptr;
|
const device_config *laserdisc = (const device_config *)ptr;
|
||||||
UINT8 bitsleft = param >> 16;
|
UINT8 bitsleft = param >> 16;
|
||||||
UINT8 data = param;
|
UINT8 data = param;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user