Skip to content

Commit

Permalink
Merge pull request #11349 from Nargash/CheevosPass
Browse files Browse the repository at this point in the history
extend cheevos password length to 255 characters
  • Loading branch information
inactive123 authored Sep 19, 2020
2 parents 6cd8828 + c0aecc7 commit 9eacbcd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ typedef struct settings
char location_driver[32];
char menu_driver[32];
char cheevos_username[32];
char cheevos_password[32];
char cheevos_password[256];
char cheevos_token[32];
char video_context_driver[32];
char audio_driver[32];
Expand Down
2 changes: 1 addition & 1 deletion deps/rcheevos/src/rurl/url.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ int rc_url_get_badge_image(char* buffer, size_t size, const char* badge_name) {

int rc_url_login_with_password(char* buffer, size_t size, const char* user_name, const char* password) {
char urle_user_name[64];
char urle_password[64];
char urle_password[256];
int written;

if (rc_url_encode(urle_user_name, sizeof(urle_user_name), user_name) != 0) {
Expand Down
2 changes: 1 addition & 1 deletion intl/msg_hash_us.h
Original file line number Diff line number Diff line change
Expand Up @@ -5252,7 +5252,7 @@ MSG_HASH(
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CHEEVOS_PASSWORD,
"Input the password of your RetroAchievements account."
"Input the password of your RetroAchievements account. Max length: 255 characters."
)

/* Settings > User > Accounts > YouTube */
Expand Down

0 comments on commit 9eacbcd

Please sign in to comment.