From e6bc401c9394e0de7759d4fe637c7369aa6292a5 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 6 Jun 2022 20:39:37 +0200 Subject: WARNING: RENAMED: `GetDroppedFiles()` to `LoadDroppedFiles()` RENAMED: `ClearDroppedFiles()` to `UnloadDroppedFiles()` --- examples/models/models_loading.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/models/models_loading.c') 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 -- cgit v1.2.3