From 9dceeb8c058267e04bf551db7a9659e3ba5bdab3 Mon Sep 17 00:00:00 2001 From: jussi Date: Tue, 16 Jul 2024 21:52:30 +0300 Subject: Reigui property_list and tree_view use scrissor mode. --- src/rgui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/rgui.c') diff --git a/src/rgui.c b/src/rgui.c index fb749f2..a17c096 100644 --- a/src/rgui.c +++ b/src/rgui.c @@ -705,7 +705,7 @@ int lguiGuiValueBox( lua_State* L ) { } /* -> result, text = RL.GuiTextBox( Rectangle bounds, string text, int textSize, bool editMode ) +> result, text = RL.GuiTextBox( Rectangle bounds, string text, int bufferSize, bool editMode ) Text Box control, updates input text @@ -713,12 +713,12 @@ Text Box control, updates input text */ int lguiGuiTextBox( lua_State* L ) { Rectangle bounds = uluaGetRectangle( L, 1 ); - int textSize = luaL_checkinteger( L, 3 ); - char text[ textSize + 1 ]; + int bufferSize = luaL_checkinteger( L, 3 ); + char text[ bufferSize + 1 ]; strcpy( text, luaL_checkstring( L, 2 ) ); bool editMode = uluaGetBoolean( L, 4 ); - lua_pushinteger( L, GuiTextBox( bounds, text, textSize, editMode ) ); + lua_pushinteger( L, GuiTextBox( bounds, text, bufferSize, editMode ) ); lua_pushstring( L, text ); return 2; -- cgit v1.2.3