Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/output/port/ega.c

    rbdf06ad r9b2e20c  
    11/*
    2  * Copyright (c) 2024 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * Copyright (c) 2011 Martin Decky
    44 * All rights reserved.
     
    9090                break;
    9191        case CHAR_ATTR_RGB:
    92                 attr =
    93                     ((RED(attrs.val.rgb.fgcolor) >= 0x80) ? 0x40 : 0) |
    94                     ((GREEN(attrs.val.rgb.fgcolor) >= 0x80) ? 0x20 : 0) |
    95                     ((BLUE(attrs.val.rgb.fgcolor) >= 0x80) ? 0x10 : 0) |
    96                     ((RED(attrs.val.rgb.bgcolor) >= 0x80) ? 0x04 : 0) |
    97                     ((GREEN(attrs.val.rgb.bgcolor) >= 0x80) ? 0x02 : 0) |
    98                     ((BLUE(attrs.val.rgb.bgcolor) >= 0x80) ? 0x01 : 0);
     92                attr = (attrs.val.rgb.bgcolor < attrs.val.rgb.fgcolor) ?
     93                    ega.style_inverted : ega.style_normal;
    9994                break;
    10095        }
Note: See TracChangeset for help on using the changeset viewer.