| 102 | //=============================================================================== |
| 103 | |
| 104 | void clear_match() { |
| 105 | // color_ostream_proxy out(Core::getInstance().getConsole()); |
| 106 | if (state->match_iterator.active) { |
| 107 | embark_assist::matcher::move_cursor(state->match_iterator.x, state->match_iterator.y); |
| 108 | } |
| 109 | embark_assist::survey::clear_results(&state->match_results); |
| 110 | embark_assist::overlay::clear_match_results(); |
| 111 | embark_assist::main::state->match_iterator.active = false; |
| 112 | } |
| 113 | |
| 114 | //=============================================================================== |
| 115 |
nothing calls this directly
no test coverage detected