mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
01896: bigfight, cyclwarr: Access Violation crash
This commit is contained in:
parent
1794fddf8d
commit
5333a25983
@ -1263,10 +1263,10 @@ static DRIVER_INIT( cyclwarr )
|
||||
memory_set_bankptr(2, dst);
|
||||
|
||||
// Copy sprite & palette data out of GFX rom area
|
||||
tatsumi_rom_sprite_lookup1 = src1;
|
||||
tatsumi_rom_sprite_lookup2 = src2;
|
||||
tatsumi_rom_clut0 = src1 + len1 - 0x1000;
|
||||
tatsumi_rom_clut1 = src2 + len2 - 0x1000;
|
||||
tatsumi_rom_sprite_lookup1 = memory_region(machine, REGION_GFX2);
|
||||
tatsumi_rom_sprite_lookup2 = memory_region(machine, REGION_GFX3);
|
||||
tatsumi_rom_clut0 = memory_region(machine, REGION_GFX2) + len1 - 0x1000;
|
||||
tatsumi_rom_clut1 = memory_region(machine, REGION_GFX3) + len2 - 0x1000;
|
||||
|
||||
tatsumi_reset();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user