fix example

This commit is contained in:
CrackedPixel 2026-02-20 12:29:41 -06:00
parent 0343cb6a37
commit 05ba67ea5f

View File

@ -79,7 +79,7 @@ int main(void)
GuiSetStyle(LISTVIEW, TEXT_ALIGNMENT, TEXT_ALIGN_LEFT);
GuiSetStyle(LISTVIEW, TEXT_PADDING, 40);
GuiListViewEx((Rectangle){ 0, 50, GetScreenWidth(), GetScreenHeight() - 50 },
files.paths, files.count, &listScrollIndex, &listItemActive, &listItemFocused);
(const char**)files.paths, files.count, &listScrollIndex, &listItemActive, &listItemFocused);
EndDrawing();
//----------------------------------------------------------------------------------