mirror of
https://github.com/love2d/love.git
synced 2026-08-15 15:51:12 +02:00
made a method for setting external save location on android
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user