diff options
author | 2017-12-01 13:22:27 +0100 | |
---|---|---|
committer | 2017-12-01 13:22:27 +0100 | |
commit | 39176274946d70ff520f265dee8fbd16d5fe0000 (patch) | |
tree | 318801d93146752050c9a492654ae3738820e3b9 /3rdparty/bx/tests/sort_test.cpp | |
parent | 6829ecb3b037d6bfbe0b84e818d17d712f71bce6 (diff) |
Updated GENie, BGFX, BX, added BIMG since it is separated now, updated all shader binaries and MAME part of code to support new interfaces [Miodrag Milanovic]
Diffstat (limited to '3rdparty/bx/tests/sort_test.cpp')
-rw-r--r-- | 3rdparty/bx/tests/sort_test.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/3rdparty/bx/tests/sort_test.cpp b/3rdparty/bx/tests/sort_test.cpp index d271a3ffa03..0b078e23d90 100644 --- a/3rdparty/bx/tests/sort_test.cpp +++ b/3rdparty/bx/tests/sort_test.cpp @@ -23,13 +23,13 @@ TEST_CASE("quickSort", "") { const char* lhs = *(const char**)_lhs; const char* rhs = *(const char**)_rhs; - return bx::strncmp(lhs, rhs); + return bx::strCmp(lhs, rhs); }); - REQUIRE(0 == bx::strncmp(str[0], "jabuka") ); - REQUIRE(0 == bx::strncmp(str[1], "jagoda") ); - REQUIRE(0 == bx::strncmp(str[2], "kruska") ); - REQUIRE(0 == bx::strncmp(str[3], "malina") ); + REQUIRE(0 == bx::strCmp(str[0], "jabuka") ); + REQUIRE(0 == bx::strCmp(str[1], "jagoda") ); + REQUIRE(0 == bx::strCmp(str[2], "kruska") ); + REQUIRE(0 == bx::strCmp(str[3], "malina") ); int8_t byte[128]; bx::RngMwc rng; |