| 444 | /* refresh a curses window via given nethack winid */ |
| 445 | |
| 446 | void |
| 447 | curses_refresh_nhwin(winid wid) |
| 448 | { |
| 449 | curses_set_wid_colors(wid, NULL); |
| 450 | wnoutrefresh(curses_get_nhwin(wid)); |
| 451 | doupdate(); |
| 452 | } |
| 453 | |
| 454 | |
| 455 | /* Delete curses window via given NetHack winid and remove entry from list */ |
no test coverage detected