From 8254a7f3aa3f1ce5327fe10960b67def005584a1 Mon Sep 17 00:00:00 2001 From: starfrost013 Date: Sun, 21 Sep 2025 20:08:19 +0100 Subject: [PATCH] set the timer if it exists... --- src/video/nv/nv4/subsystems/nv4_pramdac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/nv/nv4/subsystems/nv4_pramdac.c b/src/video/nv/nv4/subsystems/nv4_pramdac.c index 8460f6df4..0b8292796 100644 --- a/src/video/nv/nv4/subsystems/nv4_pramdac.c +++ b/src/video/nv/nv4/subsystems/nv4_pramdac.c @@ -54,7 +54,7 @@ void nv4_pramdac_set_vclk() uint64_t final_hz = nv4_pramdac_get_hz(nv4->pramdac.nvclk, false); //TODO: Everything - if (!nv4->nvbase.nv4_vclk_timer) + if (nv4->nvbase.nv4_vclk_timer) timer_set_delay_u64(nv4->nvbase.nv4_vclk_timer, final_hz / TIMER_USEC); }