Changeset 9f581365 in mainline


Ignore:
Timestamp:
2006-05-12T16:56:39Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d9cf9d5f
Parents:
18093eaf
Message:

Fixed incorrect tabulator in framebuffer (could write outside framebuffer
memory).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • genarch/src/fb/fb.c

    r18093eaf r9f581365  
    270270                                draw_char(' ');
    271271                                position++;
    272                         } while (position % 8);
     272                        } while ((position % 8) && position < columns * rows);
    273273                        break;
    274274                default:
Note: See TracChangeset for help on using the changeset viewer.