mirror of
https://github.com/libretro/ppsspp.git
synced 2025-04-02 11:41:36 +00:00
Rename flashDirectory to flash0Directory.
This commit is contained in:
parent
c0e3f1523e
commit
af2ccbb9da
@ -173,7 +173,7 @@ public:
|
||||
std::string currentDirectory;
|
||||
std::string externalDirectory;
|
||||
std::string memCardDirectory;
|
||||
std::string flashDirectory;
|
||||
std::string flash0Directory;
|
||||
std::string internalDataDirectory;
|
||||
|
||||
void Load(const char *iniFileName = "ppsspp.ini", const char *controllerIniFilename = "controls.ini");
|
||||
|
@ -379,6 +379,6 @@ void GetSysDirectories(std::string &memstickpath, std::string &flash0path) {
|
||||
#else
|
||||
// TODO
|
||||
memstickpath = g_Config.memCardDirectory;
|
||||
flash0path = g_Config.flashDirectory;
|
||||
flash0path = g_Config.flash0Directory;
|
||||
#endif
|
||||
}
|
||||
|
@ -309,7 +309,7 @@ void NativeInit(int argc, const char *argv[], const char *savegame_directory, co
|
||||
}
|
||||
|
||||
g_Config.memCardDirectory = QDir::homePath().toStdString()+"/.ppsspp/";
|
||||
g_Config.flashDirectory = g_Config.memCardDirectory+"/flash0/";
|
||||
g_Config.flash0Directory = g_Config.memCardDirectory+"/flash0/";
|
||||
|
||||
LogManager::Init();
|
||||
if (fileToLog != NULL)
|
||||
|
@ -252,14 +252,14 @@ void NativeInit(int argc, const char *argv[],
|
||||
// that for most people, using external memory (SDCard/USB Storage) makes the
|
||||
// most sense.
|
||||
g_Config.memCardDirectory = std::string(external_directory) + "/";
|
||||
g_Config.flashDirectory = std::string(external_directory) + "/flash0/";
|
||||
g_Config.flash0Directory = std::string(external_directory) + "/flash0/";
|
||||
#elif defined(BLACKBERRY) || defined(__SYMBIAN32__) || defined(MEEGO_EDITION_HARMATTAN) || defined(IOS)
|
||||
g_Config.memCardDirectory = user_data_path;
|
||||
g_Config.flashDirectory = std::string(external_directory) + "/flash0/";
|
||||
g_Config.flash0Directory = std::string(external_directory) + "/flash0/";
|
||||
#elif !defined(_WIN32)
|
||||
// Linux, Mac. Does this path really make sense?
|
||||
g_Config.memCardDirectory = std::string(getenv("HOME")) + "/.ppsspp/";
|
||||
g_Config.flashDirectory = g_Config.memCardDirectory + "/flash0/";
|
||||
g_Config.flash0Directory = g_Config.memCardDirectory + "/flash0/";
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32
|
||||
|
@ -73,7 +73,7 @@ void RunTests()
|
||||
coreParam.updateRecent = false;
|
||||
|
||||
#ifdef IOS
|
||||
std::string baseDirectory = g_Config.flashDirectory + "../";
|
||||
std::string baseDirectory = g_Config.flash0Directory + "../";
|
||||
#else
|
||||
std::string baseDirectory = g_Config.memCardDirectory;
|
||||
#endif
|
||||
|
@ -329,7 +329,7 @@ int main(int argc, const char* argv[])
|
||||
#elif defined(BLACKBERRY) || defined(__SYMBIAN32__)
|
||||
#elif !defined(_WIN32)
|
||||
g_Config.memCardDirectory = std::string(getenv("HOME"))+"/.ppsspp/";
|
||||
g_Config.flashDirectory = g_Config.memCardDirectory+"/flash/";
|
||||
g_Config.flash0Directory = g_Config.memCardDirectory+"/flash/";
|
||||
#endif
|
||||
|
||||
if (screenshotFilename != 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user