Do AV change only for vertical resolution changes - RETRO_SET_SYSTEM_AV_INFO

is way too expensive to be abused like this - this is causing flashing in
fullscreen mode for some video drivers
This commit is contained in:
twinaphex 2014-05-08 02:32:39 +02:00
parent f0b1641809
commit 693ce4d78f

View File

@ -475,7 +475,7 @@ static bool update_viewport(void)
vheight = vheight * 2;
}
return ((ow != vwidth) || (oh != vheight));
return (oh != vheight);
}
static void check_variables(void)