Skip to content

Commit

Permalink
fix details when in customization shop
Browse files Browse the repository at this point in the history
  • Loading branch information
wictornogueira committed Jul 16, 2021
1 parent b42debd commit 2017791
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/discord_rpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ static void format_state (char* state, char length) {
switch (c_mode) {
case 1:
case 4:
case 33:
break;
default:
state[0] = 0;
Expand Down Expand Up @@ -49,6 +50,9 @@ static void format_details (char* details, char length) {
case 1:
sprintf_s(details, length, "Career");
break;
case 33:
sprintf_s(details, length, "Customization Shop");
break;
default:
sprintf_s(details, length, IN_MENU);
}
Expand Down

0 comments on commit 2017791

Please sign in to comment.