Skip to content

Commit

Permalink
cli: fix uninitialized value
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco149 committed Feb 10, 2019
1 parent 66d00d7 commit 4c99cd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ int main(int argc, char* argv[]) {
float singletap_threshold = 125.0f;
int mode_override = MODE_STD;
float speed_override = 0, aim_override = 0;
int end;
int end = 0;

/* parse arguments ------------------------------------------------- */
me = argv[0];
Expand Down
2 changes: 1 addition & 1 deletion oppai.c
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ void taiko_acc_round(float acc_percent, int nobjects, int nmisses,

#define OPPAI_VERSION_MAJOR 2
#define OPPAI_VERSION_MINOR 3
#define OPPAI_VERSION_PATCH 0
#define OPPAI_VERSION_PATCH 1
#define STRINGIFY_(x) #x
#define STRINGIFY(x) STRINGIFY_(x)

Expand Down

0 comments on commit 4c99cd9

Please sign in to comment.