Changeset 3dd98c7a in mainline


Ignore:
Timestamp:
2006-06-04T15:26:38Z (18 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6118e5f6
Parents:
1ed15cd
Message:

Fixed problem with big chars on ia32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kbd/arch/ia32/src/kbd.c

    r1ed15cd r3dd98c7a  
    100100        SPECIAL, /* 0x55 - F11/F12/PF1/FN */
    101101        SPECIAL, /* 0x56 - unlabelled key next to LAlt */
    102         FUNCTION_KEYS | 11, /* 0x57 - F11 */
    103         FUNCTION_KEYS | 12, /* 0x58 - F12 */
     102        (FUNCTION_KEYS | 11), /* 0x57 - F11 */
     103        (FUNCTION_KEYS | 12), /* 0x58 - F12 */
    104104        SPECIAL, /* 0x59 */
    105105        SPECIAL, /* 0x5a */
     
    144144
    145145/** Secondary meaning of scancodes. */
    146 static char sc_secondary_map[] = {
     146static int sc_secondary_map[] = {
    147147        SPECIAL, /* 0x00 */
    148148        SPECIAL, /* 0x01 - Esc */
Note: See TracChangeset for help on using the changeset viewer.