I get this error (and also the missing themes, and shaders), if I built scummvm on Linux with a simple
configure and a
make command, and then directly run "
./scummvm".
What I will typically do, which seems to resolve this issue as well is:
1. Run
configure with a prefix to indicate where you will "install" scummvm (which will include its distribution files, like themes, shaders, icons and such). My commands look like this:
Code: Select all
mkdir -p ./scummvmDist
make clean && ./configure --enable-all-engines --disable-debug --enable-release --prefix=$(pwd)/scummvmDist
Obviously, you only have to create (
mkdir) the output folder (
scummvmDist) once, unless you delete it explicitly for some reason.
2. After
configure completes successfully, run
make to build ScummVM:
3. Run
make install, after
make completes successfully:
4. Switch to the output folder (
scummvmDist) where ScummVM got installed and run it from there. Like so:
That's it. You should no longer have the missing files issue, and you don't have to explicitly set a theme path or anything, at least not for the default stuff.