discard control_click when tracking last_action_type

This commit is contained in:
2024-09-24 19:41:37 -05:00
committed by Celtic Minstrel
parent 5cc4898bf7
commit 22ffc1201b

View File

@@ -156,7 +156,10 @@ Element& pop_next_action(std::string expected_action_type) {
replay_fps_limit->frame_finished(); replay_fps_limit->frame_finished();
} }
// control_click actions are not meaningful for debugging
if (to_return->Value() != "control_click"){
last_action_type = to_return->Value(); last_action_type = to_return->Value();
}
return *to_return; return *to_return;
} }