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

Function DrawCursor

sys/msdos/video.c:745–756  ·  view source on GitHub ↗

The check for iflags.grmode is made BEFORE calling these. */

Source from the content-addressed store, hash-verified

743
744/* The check for iflags.grmode is made BEFORE calling these. */
745void
746DrawCursor(void)
747{
748#ifdef SCREEN_VGA
749 if (iflags.usevga)
750 vga_DrawCursor();
751#endif
752#ifdef SCREEN_VESA
753 if (iflags.usevesa)
754 vesa_DrawCursor();
755#endif
756}
757
758void
759HideCursor(void)

Callers 2

tgetchFunction · 0.85
pckeysFunction · 0.85

Calls 2

vga_DrawCursorFunction · 0.85
vesa_DrawCursorFunction · 0.85

Tested by

no test coverage detected