sdl2-compat: SDL_RenderDrawPoints is a public and exported procedure.

From 7e81da3418e7b6c2c7b2a1a49975eb4e572762f4 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Wed, 4 Jan 2023 14:33:02 +0300
Subject: [PATCH] SDL_RenderDrawPoints is a public and exported procedure.

---
 src/sdl2_compat.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/sdl2_compat.c b/src/sdl2_compat.c
index ee48203..c8a1313 100644
--- a/src/sdl2_compat.c
+++ b/src/sdl2_compat.c
@@ -2871,8 +2871,9 @@ SDL_RenderDrawPoint(SDL_Renderer *renderer, int x, int y)
     return SDL3_RenderPoints(renderer, &fpoint, 1);
 }
 
-int SDL_RenderDrawPoints(SDL_Renderer *renderer,
-                         const SDL_Point *points, int count)
+DECLSPEC int SDLCALL
+SDL_RenderDrawPoints(SDL_Renderer *renderer,
+                     const SDL_Point *points, int count)
 {
     SDL_FPoint *fpoints;
     int i;