summaryrefslogtreecommitdiff
path: root/src/text.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c6
1 files changed, 3 insertions, 3 deletions
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
*/