| Summary: | missing SDLCALL in SDLTest_ExampleHitTestCallback | ||
|---|---|---|---|
| Product: | SDL | Reporter: | Ozkan Sezer <sezeroz> |
| Component: | *don't know* | Assignee: | Ryan C. Gordon <icculus> |
| Status: | RESOLVED FIXED | QA Contact: | Sam Lantinga <slouken> |
| Severity: | trivial | ||
| Priority: | P2 | ||
| Version: | HG 2.0 | ||
| Hardware: | All | ||
| OS: | All | ||
Fixed, thanks! https://hg.libsdl.org/SDL/rev/f5b657276413 |
Following trivial patch adds missing SDLCALL to SDLTest_ExampleHitTestCallback() diff --git a/src/test/SDL_test_common.c b/src/test/SDL_test_common.c --- a/src/test/SDL_test_common.c +++ b/src/test/SDL_test_common.c @@ -661,7 +661,7 @@ return (icon); } -static SDL_HitTestResult +static SDL_HitTestResult SDLCALL SDLTest_ExampleHitTestCallback(SDL_Window *win, const SDL_Point *area, void *data) { int w, h;