1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fix parameter type in SDLTTF.RenderText_Solid()

This commit is contained in:
RogueMacro 2021-02-17 21:22:44 +01:00 committed by GitHub
parent 358efb8d54
commit dfdfe094cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,7 +190,7 @@ namespace SDL2
[LinkName("TTF_RenderText_Solid")] [LinkName("TTF_RenderText_Solid")]
public static extern SDL.Surface* RenderText_Solid( public static extern SDL.Surface* RenderText_Solid(
Font* font, Font* font,
char8 text, char8* text,
SDL.Color fg SDL.Color fg
); );