Cheevos: Don't choke on long passwords

This commit is contained in:
Connor McLaughlin
2021-03-08 01:41:43 +10:00
parent a0e97059f5
commit 1893bfd248
2 changed files with 3 additions and 3 deletions

View File

@ -366,7 +366,7 @@ static void LoginASyncCallback(s32 status_code, const FrontendCommon::HTTPDownlo
static void SendLogin(const char* username, const char* password, FrontendCommon::HTTPDownloader* http_downloader)
{
char url[256] = {};
char url[768] = {};
int res = rc_url_login_with_password(url, sizeof(url), username, password);
Assert(res == 0);