robhagemans / pcbasic

PC-BASIC - A free, cross-platform emulator for the GW-BASIC family of interpreters
http://www.pc-basic.org
Other
393 stars 48 forks source link

Colour differences when scrolling down after continuing a line beyond col 80 #197

Closed robhagemans closed 2 years ago

robhagemans commented 2 years ago

Colour differences when scrolling down after continuing a line beyond col 80

Program

5 COLOR 4,0
10 PRINT STRING$(80, 1);
15 COLOR 0,4
20 PRINT "X";

Expected First line of output is red on black background; second line has one X in black on red background and the rest of the line black.

Observed First line of output is red on black background; second line has one X in black on red background and the rest of the line red.

Notes PC-BASIC version: 2.0.4 Operating system version: Ubuntu 18.04 (but expected on all)

robhagemans commented 2 years ago

Fixed by 7a4a216