From: Frode Solheim Date: Tue, 15 Jul 2025 20:55:14 +0000 (+0200) Subject: Move event_doint_delay_do_ext declaration to custom.h X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=12552884b694eb6d06925fc2ab11d16642971a41;p=francis%2Fwinuae.git Move event_doint_delay_do_ext declaration to custom.h --- diff --git a/custom.cpp b/custom.cpp index 45b55f61..dab1f586 100644 --- a/custom.cpp +++ b/custom.cpp @@ -3330,7 +3330,7 @@ static void event_doint_delay_do_ext_old(uae_u32 v) doint(); } -static void event_doint_delay_do_ext(uae_u32 v) +void event_doint_delay_do_ext(uae_u32 v) { uae_u16 old = intreq2; setclr(&intreq, v | 0x8000); diff --git a/events.cpp b/events.cpp index 30bc5c00..7652bc30 100644 --- a/events.cpp +++ b/events.cpp @@ -397,8 +397,6 @@ void event2_newevent_xx_ce(evt_t t, uae_u32 data, evfunc2 func) event2_newevent_xx(-1, t, data, func); } -void event_doint_delay_do_ext(uae_u32 v); - void event2_newevent_xx(int no, evt_t t, uae_u32 data, evfunc2 func) { evt_t et; diff --git a/include/custom.h b/include/custom.h index 2a4539ac..ef7ef36b 100644 --- a/include/custom.h +++ b/include/custom.h @@ -332,5 +332,6 @@ extern uae_u8 agnus_hpos; void vsync_event_done(void); bool get_custom_color_reg(int colreg, uae_u8 *r, uae_u8 *g, uae_u8 *b); +void event_doint_delay_do_ext(uae_u32 v); #endif /* UAE_CUSTOM_H */