Help for this page

Select Code to Download


  1. or download this
                $destRow = $current->{'rowTop'} + $row - 2;
    
    ...
                      {
                      $destRow = $screen->{'height'};
                      }
    
  2. or download this
                $backAtt[$destRow][$destCol] = 
                     $current->{'backAtt'}[$row - 1][$col - 1];
    ...
    
                substr($backTxt[$destRow], $destCol, 1) = 
                     substr($current->{'backTxt'}[$row - 1],$col - 1, 1);
    
  3. or download this
    sub makeFullBackBuffer {
        my ($self) = @_;
    ...
        }
        return \( @backAtt, @backTxt );
    }