Skip to content

Commit

Permalink
Fixed use of uninitialized variable warning in test program.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed May 29, 2014
1 parent dd5277d commit 3a80335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/controllermap.c
Expand Up @@ -109,7 +109,7 @@ WatchJoystick(SDL_Joystick * joystick)
SDL_Rect dst;
int s, _s;
Uint8 alpha=200, alpha_step = -1;
Uint32 alpha_ticks;
Uint32 alpha_ticks = 0;
char mapping[4096], temp[4096];
MappingStep *step, *prev_step;
MappingStep steps[] = {
Expand Down

0 comments on commit 3a80335

Please sign in to comment.