Reduce log verbosity on Release build
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy (push) Successful in 25s

This commit is contained in:
Stephen Seo 2023-08-30 18:00:05 +09:00
parent e57cceeaf5
commit 1ddd42cac9

View file

@ -39,6 +39,10 @@ void jumpartifact_demo_update(void *ud) {
int main() { int main() {
InitWindow(800, 800, "Demo"); InitWindow(800, 800, "Demo");
#ifdef NDEBUG
SetTraceLogLevel(LOG_WARNING);
#endif
#ifdef __EMSCRIPTEN__ #ifdef __EMSCRIPTEN__
Game game{}; Game game{};