Skip to content

Commit

Permalink
iortcw - Add support for steam cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
d10sfan committed Nov 11, 2023
1 parent b5c1a6d commit 2ec5136
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
24 changes: 17 additions & 7 deletions engines/iortcw/assets/run-iortcw.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
#!/bin/bash

if ! [[ -z "${LUX_STEAM_DECK}" ]]; then
if [ ! -f ~/.wolf/Main/wolfconfig.cfg ]; then
if [ ! -d ~/.wolf/Main ]; then
mkdir -p ~/.wolf/Main
if ! [[ -z "${LUX_STEAM_CLOUD}" ]]; then
if ! [[ -z "${LUX_STEAM_DECK}" ]]; then
if [ ! -f Main/wolfconfig.cfg ]; then
cp -rfv ./wolfconfig-template.cfg Main/wolfconfig.cfg
fi
fi

./iowolfsp.x86_64 "$@" +set fs_homepath "$PWD"
else
if ! [[ -z "${LUX_STEAM_DECK}" ]]; then
if [ ! -f ~/.wolf/Main/wolfconfig.cfg ]; then
if [ ! -d ~/.wolf/Main ]; then
mkdir -p ~/.wolf/Main
fi

cp -rfv ./wolfconfig-template.cfg ~/.wolf/Main/wolfconfig.cfg
cp -rfv ./wolfconfig-template.cfg ~/.wolf/Main/wolfconfig.cfg
fi
fi
fi

./iowolfsp.x86_64 "$@"
./iowolfsp.x86_64 "$@"
fi
3 changes: 2 additions & 1 deletion metadata/packagessniper_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3661,6 +3661,7 @@
],
"engine_name": "iortcw",
"cloudAvailable": true,
"cloduSupported": true,
"app_id": "9010"
},
{
Expand Down Expand Up @@ -9985,4 +9986,4 @@
"value": "Save Format Not Compatible"
}
]
}
}

0 comments on commit 2ec5136

Please sign in to comment.