From 48fb89449a04f07b94f8b23ba7e6fcd521de58e9 Mon Sep 17 00:00:00 2001 From: cocos02 Date: Tue, 9 Jun 2026 20:20:04 +0800 Subject: [PATCH] fix: clear gameEnded flag on new game start so MainMenu dismisses --- src/App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.vue b/src/App.vue index 8278f65..b2986ce 100644 --- a/src/App.vue +++ b/src/App.vue @@ -51,6 +51,7 @@ async function init() { function handleStart() { started.value = true + store.setGameEnded(false) applyQteParams() start() }