From a124b38a295d66e2c4b63b76098ffc4fc86ef271 Mon Sep 17 00:00:00 2001 From: VIGNESH KUMAR <45727291+VICTORVICKIE@users.noreply.github.com> Date: Sun, 11 Feb 2024 09:25:33 +0530 Subject: [PATCH] fix: set first value as default ngl tsoding scared me while using this feature on stream, so reducing the hardcodedness if that makes any sense --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 7e614e7..3a5d30f 100644 --- a/index.html +++ b/index.html @@ -48,7 +48,7 @@ "core": ["core_basic_window", "core_basic_screen_manager", "core_input_keys", "core_input_mouse_wheel",], "shapes": ["shapes_colors_palette"] } - const defaultWasm = "game"; + const defaultWasm = Object.values(wasmPaths)[0]; const raylibExampleSelect = document.getElementById("raylib-example-select");