remove __cdecl

This commit is contained in:
scawful
2024-08-07 15:14:23 -04:00
parent 24965edced
commit 08c19f99a1

View File

@@ -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++) {