Fix error on Release build using Debug macros
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy (push) Successful in 14s

This commit is contained in:
Stephen Seo 2023-08-30 17:44:19 +09:00
parent 2e97bb6a83
commit e57cceeaf5

View file

@ -10,6 +10,9 @@
do { \
std::cout << "Loading " << #f << " with value " << (f) << std::endl; \
} while (false);
#else
#define DEBUG_PRINT_VEC2(v2)
#define DEBUG_PRINT_FLOAT(f)
#endif
// standard library includes