fallout1-ce
fallout1-ce copied to clipboard
Linux: Capitalization
Running on Linux from a bash terminal I get the error message "Could not find the master datafile" (and proceeding critter error).
game/gconfig.cc
sets the strings to these files as lower case, but the GOG install is upper case MASTER.DAT so the file is not found.
Simple symlinks allow the game to run. But if changing the gconfig.cc
strings to upper doesn't cause any issues I think that would be better.
ln -s MASTER.DAT master.dat
ln -s CRITTER.DAT critter.dat
I prefer Communismation.
I suspect this one is causing quite some troubles with mods too (which are often distributed with all kinds of mixed naming)
Fo4 mods are horrible lol. textures, Textures, scripts, Scripts, SCRIPTS
data DATA
glad i noticed this issue before compiling and running
ln -s MASTER.DAT master.dat ln -s CRITTER.DAT critter.dat
The correct way to fix this is to implement case-insensitive directory/file access, but for now you can either rename, create links as you do, or specify correct paths via fallout.cfg
.
I have no music in fo2-ce since v1.2 and in fo1-ce since release. Some people also think it is related to thsi problem wit hfile naming. (original game files are in all CAPS)
"DATA/SOUND/MUSIC/" works (edit the original "DATA\SOUND\MUSIC" in fallout.cfg)
(again, a difference between Windows and GNU/Linux)