mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
LibC: Change the type of FBProperties' fields from bool to unsigned char
The bool type is not available in C89.
This commit is contained in:
parent
2882a90dec
commit
f22787dd39
1 changed files with 4 additions and 4 deletions
|
@ -19,10 +19,10 @@ struct winsize {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct FBProperties {
|
struct FBProperties {
|
||||||
bool multihead_support;
|
unsigned char multihead_support;
|
||||||
bool doublebuffer_support;
|
unsigned char doublebuffer_support;
|
||||||
bool flushing_support;
|
unsigned char flushing_support;
|
||||||
bool partial_flushing_support;
|
unsigned char partial_flushing_support;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct FBHeadProperties {
|
struct FBHeadProperties {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue