summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-09-11 19:01:27 +0200
committer hap <happppp@users.noreply.github.com>2020-09-11 19:01:27 +0200
commit748773e6f6ab863070b3a9471924edbca3bc9f07 (patch)
tree79a28362b43540d9de77825b1a0c4c51f316a944 /src/mame/drivers
parenta378bec89eb934c208386e5ddfbd9abc3a3c193f (diff)
pgm2: lores refresh rate was approximated from video recording, hsync/vtotal are not verified
Diffstat (limited to 'src/mame/drivers')
-rw-r--r--src/mame/drivers/pgm2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/pgm2.cpp b/src/mame/drivers/pgm2.cpp
index d59eb510930..4cecf239972 100644
--- a/src/mame/drivers/pgm2.cpp
+++ b/src/mame/drivers/pgm2.cpp
@@ -793,7 +793,7 @@ void pgm2_state::pgm2(machine_config &config)
void pgm2_state::pgm2_lores(machine_config &config)
{
pgm2(config);
- m_screen->set_refresh(HZ_TO_ATTOSECONDS(15625.0/264.0)); // verified
+ m_screen->set_refresh(HZ_TO_ATTOSECONDS(15625.0/264.0)); // not verified
m_screen->set_visarea(0, 320-1, 0, 240-1);
}