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

Function tty_delay_output

outdated/sys/mac/mttymain.c:361–374  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

359#endif
360
361void
362tty_delay_output(void)
363{
364 EventRecord event;
365 long toWhen = TickCount() + 3;
366
367 while (TickCount() < toWhen) {
368 WaitNextEvent(updateMask, &event, 3L, 0);
369 if (event.what == updateEvt) {
370 HandleEvent(&event);
371 blink_cursor(_mt_window, event.when);
372 }
373 }
374}
375
376void
377cmov(int x, int y)

Callers

nothing calls this directly

Calls 2

HandleEventFunction · 0.85
blink_cursorFunction · 0.85

Tested by

no test coverage detected