At this line here: https://github.com/Swampsoft/solitaire/blob/master/src/main.rs#L28
The constant points to .local/share/Steam/SteamApps/common/SHENZHEN IO/Content/ but the SteamApps folder is incorrectly cased. This game creates that folder if it doesn't exist, which causes an error to pop up when launching Steam:
Warning
/home/camden/.local/share/Steam has both 'SteamApps' and 'steamapps' directories.
This will cause problems. Please fix manually and only keep 'steamapps'
The correct path is .local/share/Steam/steamapps/common/SHENZHEN IO/Content/, with steamapps in all lowercase.
Not sure how much this is affected by distro/etc, but I am on Fedora 34 using Steam through RPM Fusion.
At this line here: https://github.com/Swampsoft/solitaire/blob/master/src/main.rs#L28
The constant points to
.local/share/Steam/SteamApps/common/SHENZHEN IO/Content/but theSteamAppsfolder is incorrectly cased. This game creates that folder if it doesn't exist, which causes an error to pop up when launching Steam:The correct path is
.local/share/Steam/steamapps/common/SHENZHEN IO/Content/, withsteamappsin all lowercase.Not sure how much this is affected by distro/etc, but I am on Fedora 34 using Steam through RPM Fusion.