Revert "Update sourcepawn submodule (#2146)"

This reverts commit 1bcc5b8a44.
This commit is contained in:
Nick Hastings
2024-06-08 09:26:13 -04:00
parent 1bcc5b8a44
commit 0e4b1ca4cf
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ void Test_Sort1D() {
AssertArrayEq("SortCustom1D Integers Ascending", intArray, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, sizeof(intArray));
float floatArray[10] = {6.3, 7.6, 3.2, 2.1, 8.5, 5.2, 0.4, 1.7, 4.8, 8.2};
SortCustom1D(floatArray, sizeof(floatArray), Custom1DSortFloat);
SortCustom1D(view_as<any>(floatArray), sizeof(floatArray), Custom1DSortFloat);
AssertArrayEq("SortCustom1D Floats Ascending", floatArray, {0.4, 1.7, 2.1, 3.2, 4.8, 5.2, 6.3, 7.6, 8.2, 8.5}, sizeof(floatArray));
}