mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix backwards check for DontDownloadInfraJson
This commit is contained in:
parent
74ee868cdb
commit
5aa73ecb17
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ bool PollInfraJsonDownload(std::string *jsonOutput) {
|
|||
return true;
|
||||
}
|
||||
|
||||
if (!g_Config.bDontDownloadInfraJson) {
|
||||
if (g_Config.bDontDownloadInfraJson) {
|
||||
NOTICE_LOG(Log::sceNet, "As specified by the ini setting DontDownloadInfraJson, using infra-dns.json from /assets");
|
||||
size_t jsonSize = 0;
|
||||
std::unique_ptr<uint8_t[]> jsonStr(g_VFS.ReadFile("infra-dns.json", &jsonSize));
|
||||
|
|
Loading…
Add table
Reference in a new issue