From: Toni Wilen Date: Thu, 18 Aug 2022 18:26:19 +0000 (+0300) Subject: 32bit to 64bit clock counter missing update. X-Git-Tag: 41000~154 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=13609feaf28c1b51495b3648a1ca75982d057036;p=francis%2Fwinuae.git 32bit to 64bit clock counter missing update. --- 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; }