From dfdfe094cd57a51e24f7df7c862808d707deb2df Mon Sep 17 00:00:00 2001 From: RogueMacro <51059464+RogueMacro@users.noreply.github.com> Date: Wed, 17 Feb 2021 21:22:44 +0100 Subject: [PATCH] Fix parameter type in SDLTTF.RenderText_Solid() --- BeefLibs/SDL2/src/SDL2_ttf.bf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BeefLibs/SDL2/src/SDL2_ttf.bf b/BeefLibs/SDL2/src/SDL2_ttf.bf index 557be93f..699f45fd 100644 --- a/BeefLibs/SDL2/src/SDL2_ttf.bf +++ b/BeefLibs/SDL2/src/SDL2_ttf.bf @@ -190,7 +190,7 @@ namespace SDL2 [LinkName("TTF_RenderText_Solid")] public static extern SDL.Surface* RenderText_Solid( Font* font, - char8 text, + char8* text, SDL.Color fg ); @@ -315,4 +315,4 @@ namespace SDL2 int index ); } -} \ No newline at end of file +}