made a method for setting external save location on android

This commit is contained in:
BobbyJones
2016-01-02 18:52:25 -05:00
parent c283e36126
commit 3aa51763e2
7 changed files with 63 additions and 17 deletions
+11
View File
@@ -50,6 +50,17 @@ Filesystem::~Filesystem()
{
}
void Filesystem::setAndroidSaveExternal(bool useExternal)
{
this->useExternal = useExternal;
}
bool Filesystem::isAndroidSaveExternal() const
{
return useExternal;
}
bool Filesystem::isRealDirectory(const std::string &path) const
{
#ifdef LOVE_WINDOWS