mirror of
https://github.com/raysan5/raygui.git
synced 2025-12-25 10:22:33 -05:00
WARNING: RENAMED: GetDroppedFiles() to LoadDroppedFiles()
This commit is contained in:
@ -83,7 +83,7 @@ int main()
|
||||
if (IsFileDropped())
|
||||
{
|
||||
int fileCount = 0;
|
||||
char **droppedFiles = GetDroppedFiles(&fileCount);
|
||||
char **droppedFiles = LoadDroppedFiles(&fileCount);
|
||||
|
||||
// Check file extensions for drag-and-drop
|
||||
if ((fileCount == 1) && IsFileExtension(droppedFiles[0], ".raw"))
|
||||
@ -108,7 +108,7 @@ int main()
|
||||
importWindowActive = true;
|
||||
}
|
||||
|
||||
ClearDroppedFiles();
|
||||
UnloadDroppedFiles();
|
||||
}
|
||||
|
||||
// Check if load button has been pressed
|
||||
|
||||
Reference in New Issue
Block a user