mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +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);
|
||||
int i;
|
||||
long address;
|
||||
|
||||
memcpy(tmp, rom, 0x10000);
|
||||
|
||||
@ -48,7 +47,7 @@ void bfm_decode_mainrom(running_machine &machine, const char *rom_region, UINT8*
|
||||
codec_data[i] = newdata;
|
||||
}
|
||||
|
||||
for ( address = 0; address < 0x10000; address++)
|
||||
for ( int address = 0; address < 0x10000; address++)
|
||||
{
|
||||
int newaddress,pattern;
|
||||
UINT16 *tab;
|
||||
|
Loading…
Reference in New Issue
Block a user