yuzu: Replace httplib with QtNetworkRequest

This commit is contained in:
Narr the Reg
2023-07-21 13:08:46 -06:00
parent 3fded314f2
commit c067046387
2 changed files with 53 additions and 34 deletions

View File

@ -19,6 +19,13 @@ public:
void Pause() override;
void Update() override;
private:
std::string GetGameString(const std::string& title);
void UpdateGameStatus(bool use_default);
std::string game_url{};
std::string game_title{};
Core::System& system;
};