summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/superqix.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-12-31 22:59:44 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-12-31 22:59:44 +0000
commit996e1c365c6b15adc1870027c2ba3ecaaf82cb36 (patch)
treec6213441d166de5e07df10149dbae6e7aad73636 /src/mame/drivers/superqix.c
parent3b41606ca0c02056604a55a7b1f5165e80bc11fb (diff)
mame_rand() -> machine->rand()
Diffstat (limited to 'src/mame/drivers/superqix.c')
-rw-r--r--src/mame/drivers/superqix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/superqix.c b/src/mame/drivers/superqix.c
index a0c350d99e6..29863a5ea15 100644
--- a/src/mame/drivers/superqix.c
+++ b/src/mame/drivers/superqix.c
@@ -516,7 +516,7 @@ static READ8_DEVICE_HANDLER(pbillian_ay_port_a_r)
{
// logerror("%04x: ay_port_a_r\n",cpu_get_pc(space->cpu));
/* bits 76------ MCU status bits */
- return (mame_rand(device->machine) & 0xc0) | input_port_read(device->machine, "BUTTONS");
+ return (device->machine->rand() & 0xc0) | input_port_read(device->machine, "BUTTONS");
}