Skip to content

Commit

Permalink
extend cheevos password length to 255 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Nargash committed Sep 19, 2020
1 parent 2a30007 commit c0aecc7
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 c0aecc7

Please sign in to comment.