This commit is contained in:
Jo 2024-04-22 10:09:41 +08:00 committed by GitHub
commit 96f92bdb59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -3233,6 +3233,7 @@ static int _combat_turn(Object* obj, bool a2)
} else { } else {
if (obj == gDude) { if (obj == gDude) {
keyboardReset(); keyboardReset();
inputEventQueueReset();
interfaceRenderArmorClass(true); interfaceRenderArmorClass(true);
_combat_free_move = 2 * perkGetRank(gDude, PERK_BONUS_MOVE); _combat_free_move = 2 * perkGetRank(gDude, PERK_BONUS_MOVE);
interfaceRenderActionPoints(gDude->data.critter.combat.ap, _combat_free_move); interfaceRenderActionPoints(gDude->data.critter.combat.ap, _combat_free_move);

View File

@ -300,6 +300,8 @@ void inputEventQueueReset()
{ {
gInputEventQueueReadIndex = -1; gInputEventQueueReadIndex = -1;
gInputEventQueueWriteIndex = 0; gInputEventQueueWriteIndex = 0;
SDL_Event e;
while (SDL_PollEvent(&e)) {} // Clear all input events
} }
// 0x4C8D1C // 0x4C8D1C