Skip to content

Commit

Permalink
Update raylib_project_creator.c
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Sep 28, 2024
1 parent f71d855 commit 1f3d35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raylib_project_creator.c
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ int main(int argc, char *argv[])
#if defined(CUSTOM_MODAL_DIALOGS)
int result = GuiFileDialog(DIALOG_MESSAGE, "Load source file(s)...", inFileName, "Ok", "Just drag and drop your code file(s)!");
#else
int result = GuiFileDialog(DIALOG_OPEN_FILE_MULTI, "Load source file(s)...", multiFileNames, "*.c,*.h", "Code Files (*.c,*.h)");
int result = GuiFileDialog(DIALOG_OPEN_FILE_MULTI, "Load source file(s)...", multiFileNames, "*.c;*.h", "Code Files");
#endif
if (result == 1)
{
Expand Down

0 comments on commit 1f3d35d

Please sign in to comment.