diff options
| author | jussi | 2023-04-14 18:49:05 +0300 |
|---|---|---|
| committer | jussi | 2023-04-14 18:49:05 +0300 |
| commit | e732b936d4a2c40057eefebed9e6b2e653aeea27 (patch) | |
| tree | c3b0118ee0212852e731940d371bffc9b5296553 /src | |
| parent | d3164d838c63e134ff3963a4fe911180b1a94d18 (diff) | |
| download | reilua-enhanced-e732b936d4a2c40057eefebed9e6b2e653aeea27.tar.gz reilua-enhanced-e732b936d4a2c40057eefebed9e6b2e653aeea27.tar.bz2 reilua-enhanced-e732b936d4a2c40057eefebed9e6b2e653aeea27.zip | |
Raygui wrapper lib finished.
Diffstat (limited to 'src')
| -rw-r--r-- | src/rgui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -353,7 +353,7 @@ Scroll Panel control - Success return Rectangle, Vector2 */ int lguiGuiScrollPanel( lua_State *L ) { - if ( !lua_istable( L, 1 ) || !lua_isstring( L, 2 ) || lua_istable( L, 3 ) || !lua_istable( L, 4 ) ) { + if ( !lua_istable( L, 1 ) || !lua_isstring( L, 2 ) || !lua_istable( L, 3 ) || !lua_istable( L, 4 ) ) { TraceLog( LOG_WARNING, "%s", "Bad call of function. RL.GuiScrollPanel( Rectangle bounds, string text, Rectangle content, Vector2 scroll )" ); lua_pushboolean( L, false ); return 1; |
