Merge remote-tracking branch 'vbam-libretro/master'

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2019-12-04 01:59:38 +00:00
commit 6c2850cd59
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 2 additions and 2 deletions

View File

@ -581,8 +581,8 @@ void retro_get_system_av_info(struct retro_system_av_info *info)
if (type == IMAGE_GB) {
aspect = !gbBorderOn ? (10.0 / 9.0) : (8.0 / 7.0);
maxWidth = sgbWidth;
maxHeight = sgbHeight;
maxWidth = !gbBorderOn ? gbWidth : sgbWidth;
maxHeight = !gbBorderOn ? gbHeight : sgbHeight;
}
info->geometry.base_width = systemWidth;