mirror of
https://github.com/raysan5/raygui.git
synced 2026-01-30 18:59:18 -05:00
WARNING: RENAMED: GetDroppedFiles() to LoadDroppedFiles()
This commit is contained in:
@ -129,11 +129,11 @@ int main()
|
||||
if (IsFileDropped())
|
||||
{
|
||||
int dropFileCount = 0;
|
||||
char **droppedFiles = GetDroppedFiles(&dropFileCount);
|
||||
char **droppedFiles = LoadDroppedFiles(&dropFileCount);
|
||||
|
||||
if ((dropFileCount > 0) && IsFileExtension(droppedFiles[0], ".rgs")) GuiLoadStyle(droppedFiles[0]);
|
||||
|
||||
ClearDroppedFiles(); // Clear internal buffers
|
||||
UnloadDroppedFiles(); // Clear internal buffers
|
||||
}
|
||||
//----------------------------------------------------------------------------------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user