remove hardcodes for directory

This commit is contained in:
qimiko 2023-09-16 04:52:34 -07:00
parent fdc7e314d1
commit e070fba8cb
No known key found for this signature in database
GPG key ID: D2D404DD810FE0E3

View file

@ -10,11 +10,11 @@ using namespace geode::prelude;
#include <ghc/filesystem.hpp>
ghc::filesystem::path dirs::getGameDir() {
return ghc::filesystem::path("/data/user/0/com.geode.launcher/files/"/*CCFileUtils::sharedFileUtils()->getWritablePath().c_str()*/);
return CCFileUtils::sharedFileUtils()->getWritablePath().c_str();
}
ghc::filesystem::path dirs::getSaveDir() {
return ghc::filesystem::path("/data/user/0/com.geode.launcher/files/"/*CCFileUtils::sharedFileUtils()->getWritablePath().c_str()*/);
return CCFileUtils::sharedFileUtils()->getWritablePath().c_str();
}
void utils::web::openLinkInBrowser(std::string const& url) {