(svn r13523) -Codechange: replace qsort by the internal typesafe QSortT for resolution sorting
authorskidd13
Sun, 15 Jun 2008 16:40:41 +0000
changeset 10969 e5fd50b81dc7
parent 10968 8f9c4121e43b
child 10970 c0341ebaf88f
(svn r13523) -Codechange: replace qsort by the internal typesafe QSortT for resolution sorting
src/gfx.cpp
--- a/src/gfx.cpp	Sun Jun 15 16:11:25 2008 +0000
+++ b/src/gfx.cpp	Sun Jun 15 16:40:41 2008 +0000
@@ -18,6 +18,7 @@
 #include "core/math_func.hpp"
 #include "settings_type.h"
 #include "core/alloc_func.hpp"
+#include "core/sort_func.hpp"
 #include "landscape_type.h"
 
 #include "table/palettes.h"
@@ -1312,14 +1313,14 @@
 	return result;
 }
 
-static int CDECL compare_res(const void *pa, const void *pb)
+static int CDECL compare_res(const uint16 *pa, const uint16 *pb)
 {
-	int x = ((const uint16*)pa)[0] - ((const uint16*)pb)[0];
+	int x = pa[0] - pb[0];
 	if (x != 0) return x;
-	return ((const uint16*)pa)[1] - ((const uint16*)pb)[1];
+	return pa[1] - pb[1];
 }
 
 void SortResolutions(int count)
 {
-	qsort(_resolutions, count, sizeof(_resolutions[0]), compare_res);
+	QSortT((uint16*)_resolutions, count, compare_res);
 }