diff --git a/include/bx/hash.h b/include/bx/hash.h index 6e2f084..3758718 100644 --- a/include/bx/hash.h +++ b/include/bx/hash.h @@ -30,8 +30,7 @@ namespace bx void add(const void* _data, int _len) { - if (BX_ENABLED(BX_PLATFORM_EMSCRIPTEN) - && BX_UNLIKELY(!isPtrAligned(_data, 4) ) ) + if (BX_UNLIKELY(!isPtrAligned(_data, 4) ) ) { addUnaligned(_data, _len); return;