(nw) Changed array assignment to double brackets for c++11 and android compatibility

This commit is contained in:
Ted Green 2016-05-31 15:00:48 -06:00
parent 77c20e43f0
commit 13e110bba7

View File

@ -491,7 +491,7 @@ iteagle_eeprom_device::iteagle_eeprom_device(const machine_config &mconfig, cons
// 0x3e = 0x0002 for good nvram
// 0x3f = checksum
m_iteagle_default_eeprom =
{
{ {
0xd000,0x0022,0x0000,0x0003,0x1209,0x1111,0x2222,0x1234,
0x0000,0x0000,0x0000,0x0000,0xcd00,0x0000,0x0000,0x0001,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
@ -500,7 +500,7 @@ iteagle_eeprom_device::iteagle_eeprom_device(const machine_config &mconfig, cons
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0002,0x0000
};
} };
}
void iteagle_eeprom_device::device_start()