MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / ui_ShowCursor

Function ui_ShowCursor

ui/UISystem.cpp:526–532  ·  view source on GitHub ↗

hide and show cursor. effects are cumulative

Source from the content-addressed store, hash-verified

524}
525// hide and show cursor. effects are cumulative
526bool ui_ShowCursor() {
527 if (!UI_cursor_show) {
528 UI_cursor_show = 1;
529 return false;
530 }
531 return true;
532}
533bool ui_HideCursor() {
534 if (UI_cursor_show) {
535 UI_cursor_show = 0;

Callers 10

RunGameMenuFunction · 0.85
StartGameMenuFunction · 0.85
PostLevelResultsFunction · 0.85
DoUIFunction · 0.85
DoUIMethod · 0.85
SetScreenModeFunction · 0.85
RestartD3Function · 0.85
PollUIFunction · 0.85
DoUIMethod · 0.85
DoUIMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected