summaryrefslogtreecommitdiff
path: root/examples/raygui_extensions/tree_item.lua
diff options
context:
space:
mode:
Diffstat (limited to 'examples/raygui_extensions/tree_item.lua')
-rw-r--r--examples/raygui_extensions/tree_item.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/raygui_extensions/tree_item.lua b/examples/raygui_extensions/tree_item.lua
index 7abaf4c..7e67cb3 100644
--- a/examples/raygui_extensions/tree_item.lua
+++ b/examples/raygui_extensions/tree_item.lua
@@ -35,9 +35,9 @@ end
function TreeItem:setOpenIcon()
if self.open then
- return RL.GuiIconText( 120, "" )
+ return RL.GuiIconText( RL.ICON_ARROW_DOWN_FILL, "" )
else
- return RL.GuiIconText( 119, "" )
+ return RL.GuiIconText( RL.ICON_ARROW_RIGHT_FILL, "" )
end
end