Fix clang compile (nw)

This commit is contained in:
Wilbert Pol 2014-03-11 19:14:35 +00:00
parent 44e07aea5c
commit 7356f8c7e4

View File

@ -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;