diff --git a/src/combat.cc b/src/combat.cc index 63d4805..c487618 100644 --- a/src/combat.cc +++ b/src/combat.cc @@ -3233,6 +3233,7 @@ static int _combat_turn(Object* obj, bool a2) } else { if (obj == gDude) { keyboardReset(); + inputEventQueueReset(); interfaceRenderArmorClass(true); _combat_free_move = 2 * perkGetRank(gDude, PERK_BONUS_MOVE); interfaceRenderActionPoints(gDude->data.critter.combat.ap, _combat_free_move); diff --git a/src/input.cc b/src/input.cc index f9c9c3d..23442bf 100644 --- a/src/input.cc +++ b/src/input.cc @@ -300,6 +300,8 @@ void inputEventQueueReset() { gInputEventQueueReadIndex = -1; gInputEventQueueWriteIndex = 0; + SDL_Event e; + while (SDL_PollEvent(&e)) {} // Clear all input events } // 0x4C8D1C