diff options
author | 2019-11-11 23:36:47 +0100 | |
---|---|---|
committer | 2019-11-11 23:36:47 +0100 | |
commit | f47c225bd5a7cddbbb6b1c4a5020f3929184ec20 (patch) | |
tree | 0b54c2803d8dcd140afaef1958c8066f23d5441d | |
parent | be07cea01305a8c768d0f65761322605e26083bb (diff) |
pong.cpp: Added 0x to length. (nw)
-rw-r--r-- | src/mame/drivers/pong.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/pong.cpp b/src/mame/drivers/pong.cpp index a85b0049f33..21b63949dd1 100644 --- a/src/mame/drivers/pong.cpp +++ b/src/mame/drivers/pong.cpp @@ -645,7 +645,7 @@ void rebound_state::rebound(machine_config &config) ROM_START( pong ) /* dummy to satisfy game entry*/ ROM_REGION( 0x10000, "maincpu", 0 ) /* enough for netlist */ - ROM_LOAD( "pong.netlist", 0x000000, 00004554, CRC(614f0e7a) SHA1(188f3ac8c23c576a357ffae4a6f57ba83ba2d194) ) + ROM_LOAD( "pong.netlist", 0x000000, 0x004554, CRC(614f0e7a) SHA1(188f3ac8c23c576a357ffae4a6f57ba83ba2d194) ) ROM_END ROM_START( breakout ) |