diff options
| author | jussi | 2023-10-28 16:42:49 +0300 |
|---|---|---|
| committer | jussi | 2023-10-28 16:42:49 +0300 |
| commit | fd49d806cf1f54fb86c3ed7b9db499f473a3ef1d (patch) | |
| tree | a9c3e8ea40a4b6d2b1104bad4cff998ae7f4d4ca /src/text.c | |
| parent | af03c7364ea0dfe2c8bb269eb8a8f9b580f39633 (diff) | |
| download | reilua-enhanced-fd49d806cf1f54fb86c3ed7b9db499f473a3ef1d.tar.gz reilua-enhanced-fd49d806cf1f54fb86c3ed7b9db499f473a3ef1d.tar.bz2 reilua-enhanced-fd49d806cf1f54fb86c3ed7b9db499f473a3ef1d.zip | |
New object types for Wave, Sound, Music and Light.
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 */ |
