Browse Source

sys: always try to open files directly on the filesystem

legacy
Sam Hocevar 8 years ago
parent
commit
244a1cbe97
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/sys/init.cpp

+ 1
- 2
src/sys/init.cpp View File

@@ -167,8 +167,7 @@ array<String> GetPathList(String const &file)
ret << data_dir[i] + file;
}

if (ret.count() == 0)
ret << file;
ret << file;

return ret;
}


Loading…
Cancel
Save