summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/phoenix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/phoenix.c')
-rw-r--r--src/mame/drivers/phoenix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/phoenix.c b/src/mame/drivers/phoenix.c
index 54676af5143..c78d7810183 100644
--- a/src/mame/drivers/phoenix.c
+++ b/src/mame/drivers/phoenix.c
@@ -446,7 +446,7 @@ static const ay8910_interface survival_ay8910_interface =
static MACHINE_RESET( phoenix )
{
- memory_set_bankptr(machine, "bank1", machine->region("maincpu")->base() + 0x4000);
+ memory_set_bankptr(machine, "bank1", machine.region("maincpu")->base() + 0x4000);
}
@@ -1056,7 +1056,7 @@ ROM_END
static DRIVER_INIT( condor )
{
/* additional inputs for coinage */
- machine->device("maincpu")->memory().space(AS_PROGRAM)->install_read_port(0x5000, 0x5000, "DSW1");
+ machine.device("maincpu")->memory().space(AS_PROGRAM)->install_read_port(0x5000, 0x5000, "DSW1");
}