From cb187f5e026bfb5c636b31c338d233967ec10a22 Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Tue, 30 Dec 2003 23:17:43 +0000 Subject: [PATCH] Fixed 60hz mode --- zsnes/src/win/winlink.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zsnes/src/win/winlink.cpp b/zsnes/src/win/winlink.cpp index 7ec9735f..a604da06 100644 --- a/zsnes/src/win/winlink.cpp +++ b/zsnes/src/win/winlink.cpp @@ -1399,7 +1399,6 @@ int InitDirectDraw() else { KitchenSync = 0; - Force60hz = 0; Refresh = 0; } } @@ -2433,7 +2432,7 @@ void drawscreenwin(void) if (Force60hz) Refresh = 60; - if (!KitchenSync && Refresh != 0) + if (!KitchenSync && Refresh !=0 && !Force60hz) { Refresh = 0; InitDirectDraw();