mirror of
https://github.com/holub/mame
synced 2025-06-07 05:13:46 +03:00
Cleaned up a small left over quirk, not worth mentioning
This commit is contained in:
parent
86cbe8c506
commit
8d4b6387f3
@ -91,10 +91,6 @@ static VIDEO_UPDATE(ilpag)
|
|||||||
int x,y;
|
int x,y;
|
||||||
int count;
|
int count;
|
||||||
|
|
||||||
UINT8 *blit_rom = memory_region(screen->machine, "blit_data");
|
|
||||||
|
|
||||||
blit_rom = blit_buffer;
|
|
||||||
|
|
||||||
count = 0;
|
count = 0;
|
||||||
|
|
||||||
for(y=0;y<512;y++)
|
for(y=0;y<512;y++)
|
||||||
@ -102,7 +98,7 @@ static VIDEO_UPDATE(ilpag)
|
|||||||
for(x=0;x<512;x++)
|
for(x=0;x<512;x++)
|
||||||
{
|
{
|
||||||
UINT32 color;
|
UINT32 color;
|
||||||
color = (blit_rom[count] & 0xff);
|
color = (blit_buffer[count] & 0xff);
|
||||||
|
|
||||||
if(x<video_screen_get_visible_area(screen)->max_x && y<video_screen_get_visible_area(screen)->max_y)
|
if(x<video_screen_get_visible_area(screen)->max_x && y<video_screen_get_visible_area(screen)->max_y)
|
||||||
*BITMAP_ADDR32(bitmap, y, x) = screen->machine->pens[color];
|
*BITMAP_ADDR32(bitmap, y, x) = screen->machine->pens[color];
|
||||||
|
Loading…
Reference in New Issue
Block a user