From 8367ef982809eda7f22d009fe664f78f48c8fe44 Mon Sep 17 00:00:00 2001 From: Christian Speckner Date: Sun, 20 Aug 2017 23:57:11 +0200 Subject: [PATCH] Documentation typo. --- src/emucore/tia/VblankManager.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emucore/tia/VblankManager.cxx b/src/emucore/tia/VblankManager.cxx index 3b3325db0..554537a4c 100644 --- a/src/emucore/tia/VblankManager.cxx +++ b/src/emucore/tia/VblankManager.cxx @@ -85,9 +85,9 @@ bool VblankManager::nextLine(bool isGarbageFrame) if (!myIsRunning) return false; // Make sure that we do the transition check **before** incrementing the line - // counter. This ensures that, if the transition is caused by VSYNC off during + // counter. This ensures that, if the transition is caused by VBLANK off during // the line, this will continue to trigger the transition in 'locked' mode. Otherwise, - // the transition would be triggered by the line change **before** the VSYNC + // the transition would be triggered by the line change **before** the VBLANK // and thus detected as a suprious violation. Sigh, this stuff is complicated, // isn't it? const bool transition = shouldTransition(isGarbageFrame);