mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
Removed bogus variable
This commit is contained in:
parent
b91ca7e606
commit
749008af45
@ -92,9 +92,6 @@ public:
|
||||
};
|
||||
|
||||
|
||||
extern int minit_boost,sinit_boost;
|
||||
extern attotime minit_boost_timeslice, sinit_boost_timeslice;
|
||||
|
||||
DRIVER_INIT ( stv );
|
||||
|
||||
|
||||
|
@ -398,7 +398,7 @@ static void custom_tilemap_draw(
|
||||
|
||||
width_mask = src_bitmap0->width - 1;
|
||||
height_mask = src_bitmap0->height - 1;
|
||||
src_y = scrolly + starty;
|
||||
src_y = (scrolly + starty) & height_mask;
|
||||
|
||||
|
||||
for (y = starty; y < endy; y++)
|
||||
|
Loading…
Reference in New Issue
Block a user