Hey folks! I'm trying to run the SSBB Legacy mod on Dolphin, and I've hit a snag. It seems like I need to include the .iso file of the original game in a .bat file for everything to work, but I'm having trouble doing that. I've downloaded Wine, but it hasn't resolved the issue either. I'm using a Steam Deck, if that makes any difference. Any help would be greatly appreciated! Here's a video that explains what I'm trying to accomplish: https://youtu.be/GjuPzUQ-gD8?si=l2LukkowHG1Pa-Dl
1 Answer
It sounds like you're a bit confused about how .iso files and .bat files work. Basically, an .iso is just a disk image, and a .bat file is a script used to automate processes. You can create a shell script that mounts the .iso file before running applications. Here's a simple example of a shell script you could use:
```bash
#!/bin/bash
mkdir $HOME/iso
mount $HOME/image.iso $HOME/iso -o loop
cd $HOME/iso
# Now run any commands you need here
```
If you want to use Wine, you can start with a command similar to this to run your .bat file:
```bash
wine cmd.exe /c FILENAME.bat
```
Thanks for the shell script example! I'll give that a shot. Just to clarify, would I need to modify the batch file to run properly in Wine?