diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/files.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/files.cpp b/src/utils/files.cpp index 07e3b2e83..726f33225 100644 --- a/src/utils/files.cpp +++ b/src/utils/files.cpp @@ -258,6 +258,11 @@ std::string Files::getPath(const std::string &file) if (tmp) { path = std::string(tmp).append(dirSeparator).append(file); +#if defined __native_client__ + std::string dataZip = "/http/data.zip/"; + if (path.substr(0, dataZip.length()) == dataZip) + path = path.replace(0, dataZip.length(), "/http/data/"); +#endif } else { |