summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mario.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-06 20:21:38 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-06 20:21:38 +0100
commit364b68a35de4507757bdedc2947995cbcb0108c4 (patch)
treeff9a728eb53efaf6c8464e4cd70bb265ec09c722 /src/mame/drivers/mario.cpp
parent1a1b4c6e658125f953df2c987a8accf1d2722ae7 (diff)
nullptr to 0x00 for ROM_FILL and ROM_COPY (nw)
Diffstat (limited to 'src/mame/drivers/mario.cpp')
-rw-r--r--src/mame/drivers/mario.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/mario.cpp b/src/mame/drivers/mario.cpp
index be97bf2ff1b..371a078c18b 100644
--- a/src/mame/drivers/mario.cpp
+++ b/src/mame/drivers/mario.cpp
@@ -634,7 +634,7 @@ ROM_START( mario )
ROM_REGION( 0x1800, "audiocpu", 0 ) /* sound */
/* internal rom */
- ROM_FILL( 0x0000, 0x0800, nullptr)
+ ROM_FILL( 0x0000, 0x0800, 0x00)
/* first half banked */
ROM_LOAD( "tma1-c-6k_e.6k", 0x1000, 0x0800, CRC(06b9ff85) SHA1(111a29bcb9cda0d935675fa26eca6b099a88427f) )
/* second half always read */
@@ -668,7 +668,7 @@ ROM_START( marioe )
ROM_REGION( 0x1800, "audiocpu", 0 ) /* sound */
/* internal rom */
- ROM_FILL( 0x0000, 0x0800, nullptr)
+ ROM_FILL( 0x0000, 0x0800, 0x00)
/* first half banked */
ROM_LOAD( "tma1-c-6k_e.6k", 0x1000, 0x0800, CRC(06b9ff85) SHA1(111a29bcb9cda0d935675fa26eca6b099a88427f) )
/* second half always read */
@@ -702,7 +702,7 @@ ROM_START( marioo )
ROM_REGION( 0x1800, "audiocpu", 0 ) /* sound */
/* internal rom */
- ROM_FILL( 0x0000, 0x0800, nullptr)
+ ROM_FILL( 0x0000, 0x0800, 0x00)
/* first half banked */
ROM_LOAD( "tma1-c-6k_e.6k", 0x1000, 0x0800, CRC(06b9ff85) SHA1(111a29bcb9cda0d935675fa26eca6b099a88427f) )
/* second half always read */
@@ -736,7 +736,7 @@ ROM_START( marioj )
ROM_REGION( 0x1800, "audiocpu", 0 ) /* sound */
/* internal rom */
- ROM_FILL( 0x0000, 0x0800, nullptr)
+ ROM_FILL( 0x0000, 0x0800, 0x00)
/* first half banked */
ROM_LOAD( "tma1c-a.6k", 0x1000, 0x0800, CRC(06b9ff85) SHA1(111a29bcb9cda0d935675fa26eca6b099a88427f) )
/* second half always read */