Set fallback width to 720

This commit is contained in:
Dimitris Panokostas 2020-06-13 21:38:46 +02:00
parent 9f250fb2dd
commit 6e5ae60004

View file

@ -581,7 +581,7 @@ static void open_screen(struct uae_prefs* p)
if (screen_is_picasso)
{
display_width = picasso_vidinfo.width ? picasso_vidinfo.width : 640;
display_width = picasso_vidinfo.width ? picasso_vidinfo.width : 720;
display_height = picasso_vidinfo.height ? picasso_vidinfo.height : 270;
}
else
@ -591,7 +591,7 @@ static void open_screen(struct uae_prefs* p)
if (currprefs.gfx_vresolution > avidinfo->gfx_vresolution_reserved)
avidinfo->gfx_vresolution_reserved = currprefs.gfx_vresolution;
display_width = p->gfx_monitor.gfx_size.width ? p->gfx_monitor.gfx_size.width : 640;
display_width = p->gfx_monitor.gfx_size.width ? p->gfx_monitor.gfx_size.width : 720;
display_height = (p->gfx_monitor.gfx_size.height ? p->gfx_monitor.gfx_size.height : 270) << p->gfx_vresolution;
}