summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/devices/video/psx.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/video/psx.cpp b/src/devices/video/psx.cpp
index 6a689edf14f..d6ffca8ade1 100644
--- a/src/devices/video/psx.cpp
+++ b/src/devices/video/psx.cpp
@@ -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;
}