Use the root of the memstick as a tempdir for downloads. Should help #8711

This commit is contained in:
Henrik Rydgard 2017-04-07 09:57:58 +02:00
parent 1ac51f952d
commit b1a530b3a5

View file

@ -49,7 +49,7 @@ std::string GameManager::GetTempFilename() const {
GetTempFileName(tempPath, L"PSP", 1, buffer);
return ConvertWStringToUTF8(buffer);
#else
return g_Config.externalDirectory + "/ppsspp.dl";
return g_Config.memStickDirectory + "/ppsspp.dl";
#endif
}