From 1eb36bd60616fb74173bec56eb37b7ec9f393323 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Mon, 19 Jan 2026 12:40:14 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E4=BF=AE=E5=A4=8D=E8=B0=83?= =?UTF-8?q?=E7=94=A8=E5=8F=82=E6=95=B0=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/app/t-sidebar.vue | 2 +- src/utils/TGGame.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/app/t-sidebar.vue b/src/components/app/t-sidebar.vue index 44a7da50..68ec2b60 100644 --- a/src/components/app/t-sidebar.vue +++ b/src/components/app/t-sidebar.vue @@ -750,7 +750,7 @@ async function tryLaunchGame(): Promise { gamePath: gamePath, uid: account.value.gameUid, ticket: resp, - is_msix: isMsix, + isMsix: isMsix, }); } catch (err) { showSnackbar.error(`调用Yae DLL失败: ${err}`); diff --git a/src/utils/TGGame.ts b/src/utils/TGGame.ts index e8ac78f8..3b730758 100644 --- a/src/utils/TGGame.ts +++ b/src/utils/TGGame.ts @@ -143,7 +143,7 @@ export async function tryCallYae(gameDir: string, uid?: string): Promise { return; } try { - await invoke("call_yae_dll", { gamePath: gamePath, uid: input, is_msix: isMsix }); + await invoke("call_yae_dll", { gamePath: gamePath, uid: input, isMsix: isMsix }); } catch (err) { showSnackbar.error(`调用Yae DLL失败: ${err}`); }