From 08c19f99a1db45f703a3c1b59d936252aedde604 Mon Sep 17 00:00:00 2001 From: scawful Date: Wed, 7 Aug 2024 15:14:23 -0400 Subject: [PATCH] remove __cdecl --- src/app/gui/asset_browser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/gui/asset_browser.h b/src/app/gui/asset_browser.h index ac79930a..3575b95f 100644 --- a/src/app/gui/asset_browser.h +++ b/src/app/gui/asset_browser.h @@ -112,7 +112,7 @@ struct AssetObject { } // Compare function to be used by qsort() - static int __cdecl CompareWithSortSpecs(const void* lhs, const void* rhs) { + static int CompareWithSortSpecs(const void* lhs, const void* rhs) { const AssetObject* a = (const AssetObject*)lhs; const AssetObject* b = (const AssetObject*)rhs; for (int n = 0; n < s_current_sort_specs->SpecsCount; n++) {