From fd49d806cf1f54fb86c3ed7b9db499f473a3ef1d Mon Sep 17 00:00:00 2001 From: jussi Date: Sat, 28 Oct 2023 16:42:49 +0300 Subject: New object types for Wave, Sound, Music and Light. --- src/text.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/text.c') diff --git a/src/text.c b/src/text.c index 75ff06b..d0c7835 100644 --- a/src/text.c +++ b/src/text.c @@ -33,7 +33,7 @@ int ltextLoadFont( lua_State *L ) { return 1; } - TraceLog( state->logLevelInvalid, "Invalid file path '%s'", lua_tostring( L, 1 ) ); + TraceLog( state->logLevelInvalid, "Invalid file '%s'", lua_tostring( L, 1 ) ); lua_pushnil( L ); return 1; @@ -73,7 +73,7 @@ int ltextLoadFontEx( lua_State *L ) { return 1; } - TraceLog( state->logLevelInvalid, "Invalid file path '%s'", lua_tostring( L, 1 ) ); + TraceLog( state->logLevelInvalid, "Invalid file '%s'", lua_tostring( L, 1 ) ); lua_pushnil( L ); return 1; @@ -82,7 +82,7 @@ int ltextLoadFontEx( lua_State *L ) { /* > font = RL.LoadFontFromImage( Image image, Color key, int firstChar ) -Load font from Image ( XNA style ) +Load font from Image ( XNA style) - Success return Font */ -- cgit v1.2.3