From 8e8e4d83140ce8975ec0e0f25aa878cf7ced7c5d Mon Sep 17 00:00:00 2001 From: Sir Mangler Date: Mon, 26 Oct 2020 14:37:00 +0000 Subject: [PATCH] GeckoCodeConfig: Use correct variable This was a pretty silly mistake on my half. --- Source/Core/Core/GeckoCodeConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/GeckoCodeConfig.cpp b/Source/Core/Core/GeckoCodeConfig.cpp index 994b7b86e..2715f1faf 100644 --- a/Source/Core/Core/GeckoCodeConfig.cpp +++ b/Source/Core/Core/GeckoCodeConfig.cpp @@ -31,7 +31,7 @@ std::vector DownloadCodes(std::string gameid, bool* succeeded) } // codes.rc24.xyz is a mirror of the now defunct geckocodes.org. - std::string endpoint{"https://codes.rc24.xyz/txt.php?txt=" + gametdb_id}; + std::string endpoint{"https://codes.rc24.xyz/txt.php?txt=" + gameid}; Common::HttpRequest http; const Common::HttpRequest::Response response = http.Get(endpoint);