mirror of https://github.com/snes9xgit/snes9x.git
Update width when converting to/from hires.
This commit is contained in:
parent
d8ef082cfe
commit
206523ee17
|
@ -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 ();
|
||||
|
|
Loading…
Reference in New Issue