diff options
| author | jussi | 2023-10-29 15:21:10 +0200 |
|---|---|---|
| committer | jussi | 2023-10-29 15:21:10 +0200 |
| commit | 0df40e2ac080364bcebd4fe0445b814230545477 (patch) | |
| tree | 36be0ab558d6642352c0bb3034b6e6b32471716d /src/core.c | |
| parent | 76911d45a879838047b2845cd6124e9ca3af083a (diff) | |
| download | reilua-enhanced-0df40e2ac080364bcebd4fe0445b814230545477.tar.gz reilua-enhanced-0df40e2ac080364bcebd4fe0445b814230545477.tar.bz2 reilua-enhanced-0df40e2ac080364bcebd4fe0445b814230545477.zip | |
Shapes, RLGL, Math, Gui and Easings to new style.
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -787,7 +787,7 @@ NOTE: Set nil if no shader */ int lcoreLoadShader( lua_State *L ) { if ( !( lua_isstring( L, 1 ) || lua_isnil( L, 1 ) ) || !( lua_isstring( L, 2 ) || lua_isnil( L, 2 ) ) ) { - TraceLog( state->logLevelInvalid, "%s", "Bad call of function. RL.LoadShader( string vsFileName, string fsFileName )" ); + TraceLog( state->logLevelInvalid, "%s", "Argument needs to be string or nil" ); lua_pushnil( L ); return 1; } |
