Skip to content

Commit

Permalink
off by 1
Browse files Browse the repository at this point in the history
  • Loading branch information
davidly committed Dec 18, 2023
1 parent 81de6c7 commit 8cca307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbo1_cpm/RSS.PAS
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ begin { show_item }
if ( 32 = buff[o] ) then
begin
tosp := chars_to_sp_or_end( 1 + o );
if ( ( col + tosp ) > 80 ) then
if ( ( col + tosp ) > 79 ) then
begin
writeln;
col := 1;
Expand Down

0 comments on commit 8cca307

Please sign in to comment.