Browse Source

raise time for immediate output, to catch some more information

pre-master-46
Holger Vogt 7 years ago
parent
commit
3ab2c6468c
  1. 2
      src/winmain.c

2
src/winmain.c

@ -328,7 +328,7 @@ AppendChar(char c)
/* If line is complete, and waiting time has passed, show it in text window. /* If line is complete, and waiting time has passed, show it in text window.
If time is less than delay time, always show the line (useful during start-up) */ If time is less than delay time, always show the line (useful during start-up) */
if (c == LF && CompareTime(30, 200)) {
if (c == LF && CompareTime(30, 500)) {
DisplayText(); DisplayText();
WaitForIdle(); WaitForIdle();
} }

Loading…
Cancel
Save