Changeset 8231246 in mainline


Ignore:
Timestamp:
2008-12-18T08:32:36Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8b97256
Parents:
64c7e14
Message:

Fix overeager optimization causing VC numbers not to be redrawn.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fb/fb.c

    r64c7e14 r8231246  
    579579                cursor_hide(vport);
    580580       
    581         uint8_t glyph = vport->backbuf[BB_POS(vport, col, row)];
    582        
    583         if (glyph != c) {
    584                 vport->backbuf[BB_POS(vport, col, row)] = c;
    585                 draw_glyph(vport, false, col, row);
    586         }
     581        vport->backbuf[BB_POS(vport, col, row)] = c;
     582        draw_glyph(vport, false, col, row);
    587583       
    588584        vport->cur_col = col;
Note: See TracChangeset for help on using the changeset viewer.