mirror of
https://github.com/holub/mame
synced 2025-04-28 11:11:48 +03:00
Fix clang compile (nw)
This commit is contained in:
parent
44e07aea5c
commit
7356f8c7e4
@ -26,7 +26,6 @@ void bfm_decode_mainrom(running_machine &machine, const char *rom_region, UINT8*
|
|||||||
{
|
{
|
||||||
dynamic_buffer tmp(0x10000);
|
dynamic_buffer tmp(0x10000);
|
||||||
int i;
|
int i;
|
||||||
long address;
|
|
||||||
|
|
||||||
memcpy(tmp, rom, 0x10000);
|
memcpy(tmp, rom, 0x10000);
|
||||||
|
|
||||||
@ -48,7 +47,7 @@ void bfm_decode_mainrom(running_machine &machine, const char *rom_region, UINT8*
|
|||||||
codec_data[i] = newdata;
|
codec_data[i] = newdata;
|
||||||
}
|
}
|
||||||
|
|
||||||
for ( address = 0; address < 0x10000; address++)
|
for ( int address = 0; address < 0x10000; address++)
|
||||||
{
|
{
|
||||||
int newaddress,pattern;
|
int newaddress,pattern;
|
||||||
UINT16 *tab;
|
UINT16 *tab;
|
||||||
|
Loading…
Reference in New Issue
Block a user