Skip to content

Commit

Permalink
Fix use of uninit value in NSMAN
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram committed May 29, 2022
1 parent 0dfe383 commit fa800c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Etterna/Singletons/NetworkSyncManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const NSCommand NSServerOffset = static_cast<NSCommand>(128);
class EndOfGame_PlayerData
{
public:
int name;
int name{0};
std::string nameStr;
int grade;
int score;
Expand Down

0 comments on commit fa800c1

Please sign in to comment.