From fe62042ca8d3080825ffa70a7ac60552f5539785 Mon Sep 17 00:00:00 2001 From: dborth Date: Sat, 3 Oct 2009 20:08:27 +0000 Subject: [PATCH] don't adjust timing if game timing is same as video mode --- source/ngc/gcvideo.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/ngc/gcvideo.cpp b/source/ngc/gcvideo.cpp index ad49894..c3d132a 100644 --- a/source/ngc/gcvideo.cpp +++ b/source/ngc/gcvideo.cpp @@ -212,6 +212,9 @@ void setFrameTimer() void SyncSpeed() { + if(GCSettings.timing != vmode_60hz) + return; // same timing as game - no adjustment necessary + now = gettime(); if(turbomode)