This commit is contained in:
SrGooglo 2024-03-16 18:54:29 +01:00
parent 040de931db
commit b22025798c
1 changed files with 12 additions and 11 deletions

View File

@ -32,7 +32,7 @@ module.exports = {
}, },
configs: { configs: {
language: { language: {
label: "Language", label:"Language",
type: "select", type: "select",
default: "en", default: "en",
ui_component_props: { ui_component_props: {
@ -77,7 +77,7 @@ module.exports = {
} }
}, },
region: { region: {
label: "Region", label:"Region",
type: "select", type: "select",
default: "0", default: "0",
ui_component_props: { ui_component_props: {
@ -115,13 +115,14 @@ module.exports = {
} }
}, },
execute: async (pkg) => { execute: async (pkg) => {
await pkg.libraries.rfs.mount(rfs_files[0]) await pkg.libraries.rfs.mount(rfs_files[0], undefined, () => {
console.log(`RFS Mounted: ${rfs_files[0]}`)
console.log(`RFS Mounted: ${rfs_files[0]}`) console.log(`Executing game engine...`)
console.log(`Executing game engine...`) setTimeout(() => {
pkg.libraries.exec.file(`yuzu-windows-msvc/yuzu-cmd.exe`, [`${pkg.install_path}/rfs_mount/01002DA013484000_v0/main.nsp`], {
await pkg.libraries.exec.file(`yuzu-windows-msvc/yuzu-cmd.exe`, [`${pkg.install_path}/rfs_mount/01002DA013484000_v0/main.nsp`], { shell: true
shell: true })
}, 2000)
}) })
}, },
close: async (pkg) => { close: async (pkg) => {
@ -133,7 +134,7 @@ class YuzuConfig {
static default = { static default = {
"language_index": 0, "language_index": 0,
"region_index": 0, "region_index": 0,
"use_docked_mode": true,
} }
static async write(data) { static async write(data) {