summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2020-01-04 15:33:44 -0500
committer GitHub <noreply@github.com>2020-01-04 15:33:44 -0500
commit4c40152837f0625242be10264fa0fa47d8bc1c72 (patch)
treefd0ec3f2ca7366ba6f3398cee4a56402ba5aa4d9
parent2ba885922ae056b0c23cf18ef736534c5d1be127 (diff)
parenta4c26f69d1eda04d99d0b91c19a5714de6b5b2ab (diff)
Merge pull request #6131 from hoholee12/master
NTSC mode to set refresh rate to 59.82 for 240 and 59.94 for 480
-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;
}