| 2275 | } |
| 2276 | |
| 2277 | void TilesFramework::cgotoxy(int x, int y, GotoRegion region) |
| 2278 | { |
| 2279 | m_print_x = x - 1; |
| 2280 | m_print_y = y - 1; |
| 2281 | |
| 2282 | bool crt_popup = region == GOTO_CRT && !m_menu_stack.empty() && |
| 2283 | m_menu_stack.back().type == UIStackFrame::CRT; |
| 2284 | m_print_area = crt_popup ? &m_text_menu : nullptr; |
| 2285 | m_cursor_region = region; |
| 2286 | } |
| 2287 | |
| 2288 | void TilesFramework::redraw() |
| 2289 | { |