From 738bbf4f2febbeae34384b9dbb3b5e2ad23a2614 Mon Sep 17 00:00:00 2001 From: SrGooglo Date: Sat, 16 Mar 2024 05:52:41 +0100 Subject: [PATCH] update --- manifests/zss.manifest | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifests/zss.manifest b/manifests/zss.manifest index 056c783..9986ce1 100644 --- a/manifests/zss.manifest +++ b/manifests/zss.manifest @@ -31,11 +31,11 @@ module.exports = { ] }, execute: async (pkg) => { - await pkg.libraries.rfs.mount(rfs_files[0]) - console.log(`RFS Mounted: ${rfs_files[0]}`) - - console.log(`Executing game engine...`) - await pkg.libraries.exec.file(`yuzu-windows-msvc/yuzu-cmd.exe`, [`-c ${pkg.install_path}/config`, `-f`, `${pkg.install_path}/rfs_mount/01002DA013484000_v0/main.nsp`]) + await pkg.libraries.rfs.mount(rfs_files[0], undefined, () => { + console.log(`RFS Mounted: ${rfs_files[0]}`) + console.log(`Executing game engine...`) + pkg.libraries.exec.file(`yuzu-windows-msvc/yuzu-cmd.exe`, [`-c ${pkg.install_path}/config`, `-f`, `${pkg.install_path}/rfs_mount/01002DA013484000_v0/main.nsp`]) + }) }, close: async (pkg) => { await pkg.rfs.unmount(rfs_files[0])