Removed bogus variable

This commit is contained in:
Angelo Salese 2011-05-23 19:54:46 +00:00
parent b91ca7e606
commit 749008af45
2 changed files with 1 additions and 4 deletions

View File

@ -92,9 +92,6 @@ public:
};
extern int minit_boost,sinit_boost;
extern attotime minit_boost_timeslice, sinit_boost_timeslice;
DRIVER_INIT ( stv );

View File

@ -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++)