From e907e3d7295d69dd491907399265bc58a348f49d Mon Sep 17 00:00:00 2001 From: Alexander Batalov Date: Sat, 21 May 2022 03:27:41 +0300 Subject: [PATCH] Fix mouseHitTestInWindow declaration --- src/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.h b/src/core.h index 4534756..9896668 100644 --- a/src/core.h +++ b/src/core.h @@ -637,6 +637,6 @@ bool _vcr_load_record(STRUCT_51E2F0* ptr, File* stream); int screenGetWidth(); int screenGetHeight(); void mouseGetPositionInWindow(int win, int* x, int* y); -bool mouseClickInWindow(int win, int left, int top, int right, int bottom); +bool mouseHitTestInWindow(int win, int left, int top, int right, int bottom); #endif /* CORE_H */