mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
NTSC mode to set refresh rate to 59.82 for 240 and 59.94 for 480
fixes sync issues regarding beatmania IIDX games
This commit is contained in:
parent
2ba885922a
commit
a4c26f69d1
@ -437,13 +437,14 @@ void psxgpu_device::updatevisiblearea()
|
||||
else
|
||||
{
|
||||
/* ntsc */
|
||||
refresh = 60;
|
||||
switch( ( n_gpustatus >> 0x13 ) & 1 )
|
||||
{
|
||||
case 0:
|
||||
refresh = 59.82;
|
||||
n_screenheight = 240;
|
||||
break;
|
||||
case 1:
|
||||
refresh = 59.94;
|
||||
n_screenheight = 480;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user