Changeset 6974061 in mainline


Ignore:
Timestamp:
2009-01-07T21:20:47Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
06b2b7f
Parents:
5f8fd72
Message:

Fix enter key on lgxemul with no fb.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/kbd/genarch/src/nofb.c

    r5f8fd72 r6974061  
    6060        static unsigned long buf = 0;
    6161        static int count = 0;   
    62        
    63         if(scan_code == 0x7e) {
     62
     63        if (scan_code == '\r')
     64                scan_code = '\n';
     65
     66        if (scan_code == 0x7e) {
    6467                switch (buf) {
    6568                case KEY_F5:
Note: See TracChangeset for help on using the changeset viewer.