RC2014Z80 / picoterm

Pi Pico VGA Terminal Emulator For RC2014
BSD 3-Clause "New" or "Revised" License
64 stars 19 forks source link

1.1 source 80 column version not working - Bug reintroduced ? #7

Closed DonaldMoran closed 2 years ago

DonaldMoran commented 2 years ago

Hello,

With the latest 1.1 source, an older and Closed bug "80 column version not working #2" by "dquadros" seems to have been re-introduced.

"There is a small bug in picoterm.c that will crash the program at startup: at the beginning of prepare_text_buffer() the for loop should be" << dquadros

for(int c=0;c<ROWS;c++)

instead if

for(int c=0;c<=ROWS;c++)

Built from source, the 80 column one did not run until making this update.

Thanks

mchobby commented 2 years ago

Thanks! This was indeed the issue I noticed and the fix!

RFC2795 commented 2 years ago

Thank you, this does seem to have fixed it.