| 2673 | //======================================================================================= |
| 2674 | |
| 2675 | void match_world_tile(embark_assist::defs::geo_data *geo_summary, |
| 2676 | embark_assist::defs::world_tile_data *survey_results, |
| 2677 | embark_assist::defs::finders *finder, |
| 2678 | embark_assist::defs::match_results *match_results, |
| 2679 | uint16_t x, |
| 2680 | uint16_t y) { |
| 2681 | |
| 2682 | // color_ostream_proxy out(Core::getInstance().getConsole()); |
| 2683 | |
| 2684 | embark_assist::survey::survey_mid_level_tile(geo_summary, |
| 2685 | survey_results, |
| 2686 | &state->mlt); |
| 2687 | |
| 2688 | mid_level_tile_match(survey_results, |
| 2689 | &state->mlt, |
| 2690 | x, |
| 2691 | y, |
| 2692 | finder, |
| 2693 | match_results); |
| 2694 | } |
| 2695 | |
| 2696 | //======================================================================================= |
| 2697 |
no test coverage detected