mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
POSIX: Add #ifdef guards for DATA_PATH.
Thanks to snover for pointing out they should be there.
This commit is contained in:
parent
266e8e6611
commit
13d0ec9bea
@ -142,6 +142,7 @@ Common::String OSystem_POSIX::getDefaultConfigFileName() {
|
||||
}
|
||||
|
||||
void OSystem_POSIX::addSysArchivesToSearchSet(Common::SearchSet &s, int priority) {
|
||||
#ifdef DATA_PATH
|
||||
const char *snap = getenv("SNAP");
|
||||
if (snap) {
|
||||
Common::String dataPath = Common::String(snap) + DATA_PATH;
|
||||
@ -152,6 +153,7 @@ void OSystem_POSIX::addSysArchivesToSearchSet(Common::SearchSet &s, int priority
|
||||
s.add(dataPath, new Common::FSDirectory(dataNode, 4), priority);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// For now, we always add the data path, just in case SNAP doesn't make sense.
|
||||
OSystem_SDL::addSysArchivesToSearchSet(s, priority);
|
||||
|
Loading…
x
Reference in New Issue
Block a user