Fix random scrolling on terminal

This commit is contained in:
Gordon Williams 2019-11-06 13:06:47 +00:00
parent 45bcd987ad
commit 34c1f98900

View File

@ -842,7 +842,8 @@ void jsiSemiInit(bool autoLoad) {
jshPrintBanner();
#endif
}
jsiConsolePrint("\n"); // output new line
if (consoleDevice != EV_TERMINAL) // don't spam the terminal
jsiConsolePrint("\n"); // output new line
inputLineRemoved = true; // we need to put the input line back...
}
}