Update width when converting to/from hires.

This commit is contained in:
Brandon Wright 2018-05-20 20:03:12 -05:00
parent d8ef082cfe
commit 206523ee17
1 changed files with 2 additions and 0 deletions

View File

@ -1660,6 +1660,7 @@ S9xDeinitUpdate (int width, int height)
S9xDisplayDriver::image_bpp,
width,
height);
top_level->last_width = width;
}
else if (gui_config->hires_effect == HIRES_MERGE)
{
@ -1668,6 +1669,7 @@ S9xDeinitUpdate (int width, int height)
S9xDisplayDriver::image_bpp,
width,
height);
top_level->last_width = width;
}
GFX.Screen = driver->get_next_buffer ();