From e232181f3d2fa07341d4a9208d1517a6f214a824 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Tue, 27 Apr 2021 16:04:25 +0900 Subject: [PATCH] cmd: cls to also clear pixels --- assets/disk0/tvdos/bin/command.js | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/disk0/tvdos/bin/command.js b/assets/disk0/tvdos/bin/command.js index 5e7c085..500ae3d 100644 --- a/assets/disk0/tvdos/bin/command.js +++ b/assets/disk0/tvdos/bin/command.js @@ -274,6 +274,7 @@ shell.coreutils = { }, cls: function(args) { con.clear(); + graphics.clearPixels(255); }, exit: function(args) { cmdExit = true;