From 185b655deaf1f886fdebc8cf21f457443ffea430 Mon Sep 17 00:00:00 2001 From: Deon George Date: Sat, 25 Jan 2025 21:46:10 +1100 Subject: [PATCH] Clear baseline when rendering, in case it takes a while to process a frame --- load/session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/load/session.js b/load/session.js index 71a6640..4f02ee7 100644 --- a/load/session.js +++ b/load/session.js @@ -45,7 +45,6 @@ function Session() { this.page = this.previous; this.previous = undefined; - this.baselineClear(); return result; } @@ -168,6 +167,7 @@ function Session() { // Render the page this.render = function() { + this.baselineClear(); this.gotoxy(0,0); //console.clear(null,false); write(so.page.display().join(''));