Ignore 0 line blits.

This commit is contained in:
SarahW 2017-07-17 20:59:42 +01:00
commit b90b5b7d7d

View file

@ -522,6 +522,8 @@ void video_wait_for_buffer()
void video_blit_memtoscreen(int x, int y, int y1, int y2, int w, int h)
{
if (h <= 0)
return;
video_wait_for_blit();
blit_data.busy = 1;
blit_data.buffer_in_use = 1;