Skip to content

Commit

Permalink
fix uninitialized vars
Browse files Browse the repository at this point in the history
  • Loading branch information
White Dragon committed Jan 8, 2018
1 parent 2a2a8b8 commit 4029189
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/openbor.c
Original file line number Diff line number Diff line change
Expand Up @@ -16709,8 +16709,8 @@ void update_loading(s_loadingbar *s, int value, int max)

void addscore(int playerindex, int add)
{
unsigned int s ;
unsigned int next1up;
unsigned int s = 0;
unsigned int next1up = 0;
ScriptVariant var; // used for execute script
Script *cs;

Expand Down

0 comments on commit 4029189

Please sign in to comment.