summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bx/src/timer.cpp
diff options
context:
space:
mode:
author Бранимир Караџић <branimirkaradzic@gmail.com>2021-08-10 20:26:34 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2021-08-10 20:26:34 +0200
commita8514308791e1c69fb4295aa0a55736aaa17b2a9 (patch)
tree6e169c162ba8ff67d4b89537e7199d8f8f2d7588 /3rdparty/bx/src/timer.cpp
parent9be98f7c8f7aee6f8172c322116af0f473228bee (diff)
Update bx to latest
Diffstat (limited to '3rdparty/bx/src/timer.cpp')
-rw-r--r--3rdparty/bx/src/timer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bx/src/timer.cpp b/3rdparty/bx/src/timer.cpp
index 80bc28a8448..45806b10777 100644
--- a/3rdparty/bx/src/timer.cpp
+++ b/3rdparty/bx/src/timer.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2010-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2010-2021 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
*/
@@ -41,7 +41,7 @@ namespace bx
gettimeofday(&now, 0);
int64_t i64 = now.tv_sec*INT64_C(1000000) + now.tv_usec;
#else
- BX_CHECK(false, "Not implemented!");
+ BX_ASSERT(false, "Not implemented!");
int64_t i64 = UINT64_MAX;
#endif // BX_PLATFORM_
return i64;