diff options
Diffstat (limited to 'examples/models/models_loading.c')
| -rw-r--r-- | examples/models/models_loading.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/models/models_loading.c b/examples/models/models_loading.c index f13b11ef..7d4543cd 100644 --- a/examples/models/models_loading.c +++ b/examples/models/models_loading.c @@ -68,7 +68,7 @@ int main(void) if (IsFileDropped()) { int count = 0; - char **droppedFiles = GetDroppedFiles(&count); + char **droppedFiles = LoadDroppedFiles(&count); if (count == 1) // Only support one file dropped { @@ -95,7 +95,7 @@ int main(void) } } - ClearDroppedFiles(); // Clear internal buffers + UnloadDroppedFiles(); // Clear internal buffers } // Select model on mouse click |
