mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +01:00
[libretro] Fix the 'Hiding Master System Side Borders' option not working with 'Blargg NTSC filter' (#411)
This commit is contained in:
parent
236e783ec2
commit
cf26703292
@ -3529,11 +3529,11 @@ void retro_run(void)
|
||||
|
||||
if ((config.left_border != 0) && (reg[0] & 0x20) && (bitmap.viewport.x == 0) && ((system_hw == SYSTEM_MARKIII) || (system_hw & SYSTEM_SMS) || (system_hw == SYSTEM_PBC)))
|
||||
{
|
||||
bmdoffset = 16;
|
||||
bmdoffset = (16 + (config.ntsc ? 24 : 0));
|
||||
if (config.left_border == 1)
|
||||
vwoffset = 8;
|
||||
vwoffset = (8 + (config.ntsc ? 12 : 0));
|
||||
else
|
||||
vwoffset = 16;
|
||||
vwoffset = (16 + (config.ntsc ? 24 : 0));
|
||||
}
|
||||
|
||||
if (!do_skip)
|
||||
|
Loading…
Reference in New Issue
Block a user