GeckoCodeConfig: Remove HTTPS workaround for Android

This commit is contained in:
OatmealDome
2024-12-22 19:38:19 -05:00
parent 4dc368d8df
commit d525776ae6
3 changed files with 4 additions and 8 deletions

View File

@ -191,7 +191,7 @@ Java_org_dolphinemu_dolphinemu_features_cheats_model_GeckoCheat_downloadCodes(JN
const std::string gametdb_id = GetJString(env, jGameTdbId);
bool success = true;
const std::vector<Gecko::GeckoCode> codes = Gecko::DownloadCodes(gametdb_id, &success, false);
const std::vector<Gecko::GeckoCode> codes = Gecko::DownloadCodes(gametdb_id, &success);
if (!success)
return nullptr;