summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/src/nvapi.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/src/nvapi.cpp')
-rw-r--r--3rdparty/bgfx/src/nvapi.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/bgfx/src/nvapi.cpp b/3rdparty/bgfx/src/nvapi.cpp
index 3ece9c7fc03..0103b0c0c30 100644
--- a/3rdparty/bgfx/src/nvapi.cpp
+++ b/3rdparty/bgfx/src/nvapi.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2018 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
@@ -358,7 +358,7 @@ namespace bgfx
#define NVA_CHECK(_call) \
BX_MACRO_BLOCK_BEGIN \
int32_t __result__ = _call; \
- BX_CHECK(1 == __result__, #_call " FAILED 0x%08x\n", __result__); \
+ BX_ASSERT(1 == __result__, #_call " FAILED 0x%08x\n", __result__); \
BX_UNUSED(__result__); \
BX_MACRO_BLOCK_END