mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-13 06:15:07 +01:00
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:
parent
f0b1641809
commit
693ce4d78f
@ -475,7 +475,7 @@ static bool update_viewport(void)
|
|||||||
vheight = vheight * 2;
|
vheight = vheight * 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ((ow != vwidth) || (oh != vheight));
|
return (oh != vheight);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void check_variables(void)
|
static void check_variables(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user