summaryrefslogtreecommitdiff
path: root/src/utils/physfstools.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-01-18 21:51:16 +0300
committerAndrei Karas <akaras@inbox.ru>2017-01-18 21:51:16 +0300
commit266773f838c6c0c6f857a7a7fbcbbe8d6333f03b (patch)
tree5d9b5a74d0faf7c6fc1b253593cc856de11bbb3c /src/utils/physfstools.cpp
parent07fa80d2c125df1cb716e9535e15aa7cc03761fb (diff)
downloadplus-266773f838c6c0c6f857a7a7fbcbbe8d6333f03b.tar.gz
plus-266773f838c6c0c6f857a7a7fbcbbe8d6333f03b.tar.bz2
plus-266773f838c6c0c6f857a7a7fbcbbe8d6333f03b.tar.xz
plus-266773f838c6c0c6f857a7a7fbcbbe8d6333f03b.zip
Replace left direct physfs functions calls into physfs namespace functions.
Diffstat (limited to 'src/utils/physfstools.cpp')
-rw-r--r--src/utils/physfstools.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/utils/physfstools.cpp b/src/utils/physfstools.cpp
index 1424bb2a2..cc17c09b3 100644
--- a/src/utils/physfstools.cpp
+++ b/src/utils/physfstools.cpp
@@ -171,4 +171,14 @@ namespace PhysFs
}
return true;
}
+
+ void permitLinks(const bool val)
+ {
+ PHYSFS_permitSymbolicLinks(val ? 1 : 0);
+ }
+
+ const char *getLastError()
+ {
+ return PHYSFS_getLastError();
+ }
} // namespace PhysFs