From 5fc2017661a7b02ab07a0b3594723d7d690a77ce Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 12 Oct 2017 14:25:07 -0700 Subject: [PATCH] Fixed bug 3877 - missing SDLCALL in SDLTest_ExampleHitTestCallback Ozkan Sezer Following trivial patch adds missing SDLCALL to SDLTest_ExampleHitTestCallback() --- src/test/SDL_test_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/SDL_test_common.c b/src/test/SDL_test_common.c index f288d2330b26c..d3101ea704f5f 100644 --- a/src/test/SDL_test_common.c +++ b/src/test/SDL_test_common.c @@ -676,7 +676,7 @@ SDLTest_LoadIcon(const char *file) return (icon); } -static SDL_HitTestResult +static SDL_HitTestResult SDLCALL SDLTest_ExampleHitTestCallback(SDL_Window *win, const SDL_Point *area, void *data) { int w, h;