🐛 修复调用参数异常

This commit is contained in:
BTMuli
2026-01-19 12:40:14 +08:00
parent f7eb293ae5
commit 1eb36bd606
2 changed files with 2 additions and 2 deletions

View File

@@ -750,7 +750,7 @@ async function tryLaunchGame(): Promise<void> {
gamePath: gamePath,
uid: account.value.gameUid,
ticket: resp,
is_msix: isMsix,
isMsix: isMsix,
});
} catch (err) {
showSnackbar.error(`调用Yae DLL失败: ${err}`);

View File

@@ -143,7 +143,7 @@ export async function tryCallYae(gameDir: string, uid?: string): Promise<void> {
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}`);
}