mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
RRenamed BX_CHECK to BX_ASSERT.
This commit is contained in:
@@ -208,7 +208,7 @@ namespace entry
|
||||
static void initTranslateKey(uint16_t _xk, Key::Enum _key)
|
||||
{
|
||||
_xk += 256;
|
||||
BX_CHECK(_xk < BX_COUNTOF(s_translateKey), "Out of bounds %d.", _xk);
|
||||
BX_ASSERT(_xk < BX_COUNTOF(s_translateKey), "Out of bounds %d.", _xk);
|
||||
s_translateKey[_xk&0x1ff] = (uint8_t)_key;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user