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}`); }