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/textures.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/textures.c') diff --git a/src/textures.c b/src/textures.c index 2121d12..a66902d 100644 --- a/src/textures.c +++ b/src/textures.c @@ -21,7 +21,7 @@ int ltexturesLoadImage( 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; @@ -929,7 +929,7 @@ int ltexturesLoadTexture( 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; -- cgit v1.2.3