From 13609feaf28c1b51495b3648a1ca75982d057036 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 18 Aug 2022 21:26:19 +0300 Subject: [PATCH] 32bit to 64bit clock counter missing update. --- events.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events.cpp b/events.cpp index 92504ddd..2ab3fc89 100644 --- a/events.cpp +++ b/events.cpp @@ -406,7 +406,7 @@ void event2_newevent_x_replace(evt_t t, uae_u32 data, evfunc2 func) eventtab2[i].active = false; } } - if (((int)t) <= 0) { + if (t <= 0) { func(data); return; } -- 2.47.3