summaryrefslogtreecommitdiff
path: root/src/rlgl.c
diff options
context:
space:
mode:
authorjussi2023-04-06 12:31:37 +0300
committerjussi2023-04-06 12:31:37 +0300
commit2526c9732e7ea35bc9ed3e43a4db77b7e6364c5a (patch)
tree825775577403d9341045571adb266173513c4bbd /src/rlgl.c
parent198a74c0aa27389c062c47bc29187c58a9d6c4a1 (diff)
downloadreilua-enhanced-2526c9732e7ea35bc9ed3e43a4db77b7e6364c5a.tar.gz
reilua-enhanced-2526c9732e7ea35bc9ed3e43a4db77b7e6364c5a.tar.bz2
reilua-enhanced-2526c9732e7ea35bc9ed3e43a4db77b7e6364c5a.zip
All global variables and functions are not in global RL table. doc_parser creates also ReiLua_API.lua.
Diffstat (limited to 'src/rlgl.c')
-rw-r--r--src/rlgl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rlgl.c b/src/rlgl.c
index 0ca3383..c025c01 100644
--- a/src/rlgl.c
+++ b/src/rlgl.c
@@ -8,7 +8,7 @@
*/
/*
-> success = RL_rlSetLineWidth( float width )
+> success = RL.rlSetLineWidth( float width )
Set the line drawing width
@@ -17,7 +17,7 @@ Set the line drawing width
*/
int lrlglSetLineWidth( lua_State *L ) {
if ( !lua_isnumber( L, -1 ) ) {
- TraceLog( LOG_WARNING, "%s", "Bad call of function. RL_rlSetLineWidth( float width )" );
+ TraceLog( LOG_WARNING, "%s", "Bad call of function. RL.rlSetLineWidth( float width )" );
lua_pushboolean( L, false );
return 1;
}
@@ -28,7 +28,7 @@ int lrlglSetLineWidth( lua_State *L ) {
}
/*
-> width = RL_rlGetLineWidth()
+> width = RL.rlGetLineWidth()
Get the line drawing width