Rev 3790 | Rev 4151 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3790 | Rev 4096 | ||
---|---|---|---|
Line 56... | Line 56... | ||
56 | uint16_t vesa_bpp; |
56 | uint16_t vesa_bpp; |
57 | uint16_t vesa_scanline; |
57 | uint16_t vesa_scanline; |
58 | 58 | ||
59 | int vesa_present(void) |
59 | int vesa_present(void) |
60 | { |
60 | { |
61 | if (vesa_width != 0xffff) |
- | |
62 | return true; |
- | |
63 | if (vesa_height != 0xffff) |
61 | if ((vesa_width != 0xffff) && (vesa_height != 0xffff)) |
64 | return true; |
62 | return true; |
- | 63 | ||
65 | return false; |
64 | return false; |
66 | } |
65 | } |
67 | 66 | ||
68 | void vesa_init(void) |
67 | void vesa_init(void) |
69 | { |
68 | { |