Skip to content

Commit

Permalink
fix type mismatch in BI Online
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Aug 24, 2023
1 parent f7b0c87 commit 44ca1af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/managers/BetterInfoOnline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void BetterInfoOnline::loadScores(int accountID, bool force){
void BetterInfoOnline::onScoresFinished(CCHttpClient* client, CCHttpResponse* response){
if(!(response->isSucceed())) return;

std::vector<char>* responseData = response->getResponseData();
gd::vector<char>* responseData = response->getResponseData();
std::string responseString(responseData->begin(), responseData->end());

int accountID = (int) (response->getHttpRequest()->getUserData());
Expand Down

0 comments on commit 44ca1af

Please sign in to comment.