Changeset 4a26e39 in mainline


Ignore:
Timestamp:
2009-03-12T17:56:13Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5597947
Parents:
3a1c048
Message:

fix very strange condition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/drivers/vesa.c

    r3a1c048 r4a26e39  
    5959int vesa_present(void)
    6060{
    61         if (vesa_width != 0xffff)
     61        if ((vesa_width != 0xffff) && (vesa_height != 0xffff))
    6262                return true;
    63         if (vesa_height != 0xffff)
    64                 return true;
     63       
    6564        return false;
    6665}
Note: See TracChangeset for help on using the changeset viewer.