MCPcopy Create free account
hub / github.com/NetHack/NetHack / Gem_curs

Function Gem_curs

outdated/win/gem/wingem.c:647–659  ·  view source on GitHub ↗
(window, x, y)

Source from the content-addressed store, hash-verified

645extern void mar_curs(int, int); /* mar_curs is only for map */
646
647void
648Gem_curs(window, x, y)
649winid window;
650register int x, y;
651{
652 if (window == WIN_ERR) /* MAR -- test existence */
653 panic(winpanicstr, window);
654
655 if (window == WIN_MAP)
656 mar_curs(x - 1, y); /*$$$*/
657 else if (window == WIN_STATUS)
658 curr_status_line = y;
659}
660
661extern void mar_add_status_str(const char *, int);
662extern void mar_putstr_text(winid, int, const char *);

Callers 1

Gem_print_glyphFunction · 0.85

Calls 2

mar_cursFunction · 0.85
panicFunction · 0.50

Tested by

no test coverage detected