Minor visual fix
This commit is contained in:
parent
753e9402bf
commit
3ef45df8cb
|
@ -127,19 +127,20 @@ skillbar_handle_event(SkillBar *bar, SDL_Event *event)
|
||||||
if (event->type != SDL_KEYDOWN)
|
if (event->type != SDL_KEYDOWN)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
unsigned int key = 0;
|
||||||
if (keyboard_press(SDLK_1, event))
|
if (keyboard_press(SDLK_1, event))
|
||||||
bar->lastActivation = 1;
|
key = 1;
|
||||||
else if (keyboard_press(SDLK_2, event))
|
else if (keyboard_press(SDLK_2, event))
|
||||||
bar->lastActivation = 2;
|
key = 2;
|
||||||
else if (keyboard_press(SDLK_3, event))
|
else if (keyboard_press(SDLK_3, event))
|
||||||
bar->lastActivation = 3;
|
key = 3;
|
||||||
else if (keyboard_press(SDLK_4, event))
|
else if (keyboard_press(SDLK_4, event))
|
||||||
bar->lastActivation = 4;
|
key = 4;
|
||||||
else
|
|
||||||
bar->lastActivation = 0;
|
|
||||||
|
|
||||||
if (bar->lastActivation > 0)
|
if (key != 0) {
|
||||||
|
bar->lastActivation = key;
|
||||||
timer_start(bar->activationTimer);
|
timer_start(bar->activationTimer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue