Changeset 3be8401 in mainline


Ignore:
Timestamp:
2006-06-02T14:57:29Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1d181159
Parents:
390a678
Message:

Fixed mistake in draw_data.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fb/fb.c

    r390a678 r3be8401  
    393393        /* Create first viewport */
    394394        viewport_create(0,0,xres,yres);
    395 
    396         clear_port(0);
    397395}
    398396
     
    469467                if (data[i].character == ' ' && style_same(data[i].style,vport->style))
    470468                        continue;
    471                 draw_char(vp, data[i].character, i/vport->rows, i % vport->cols,
     469                draw_char(vp, data[i].character, i/vport->cols, i % vport->cols,
    472470                          data[i].style);
    473471        }
Note: See TracChangeset for help on using the changeset viewer.