From c92e6b03ac461ac16c13412ae414332145e60081 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 15 Dec 2018 21:39:00 +0100 Subject: [PATCH] - why wasn't this saved? --- src/p_things.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_things.cpp b/src/p_things.cpp index 0eb7ef5ebd..9728c691ea 100644 --- a/src/p_things.cpp +++ b/src/p_things.cpp @@ -582,7 +582,7 @@ static void DumpClassMap(FClassMap &themap) { allpairs[i++] = pair; } - qsort(allpairs.Data, i, sizeof(allpairs[0]), SpawnableSort); + qsort(allpairs.Data(), i, sizeof(allpairs[0]), SpawnableSort); for (int j = 0; j < i; ++j) { pair = allpairs[j];