AliveTeam / alive_reversing

Re-implementation of Oddworld: Abe's Exoddus and Oddworld: Abe's Oddysee
345 stars 44 forks source link

Files fail to open on case sensitive file systems #1440

Open MrSapps opened 2 years ago

MrSapps commented 2 years ago

E.g some FMVs do not play on linux due to mixed cases of file names in the code VS what is on disk. Needs to use directory scanning like wine.

foldfree commented 2 years ago

As a workaround, here is a bash oneliner to fix the filenames using awk, ls and mv. in AO folder do: eval "$(ls -- *.ddv | awk '{print"mv -- \x27"$0"\x27 \x27"toupper($0)"\x27"}')" all the videos are now 'FILENAME.DDV' and will be played in the game.