diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-23 06:26:23 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-05-23 06:26:23 +0000 |
commit | 30d27d154232c477e1401cd9efa983485aac84d8 (patch) | |
tree | 8cd8ebaaaeda1495e5ac63161e8ce38567fb4719 | |
parent | 7fd213953ed996741a8eb7d9b40e1cd3d76ea36f (diff) | |
download | edk2-platforms-30d27d154232c477e1401cd9efa983485aac84d8.tar.xz |
Pass GCC build.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5287 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Universal/HiiDatabaseDxe/Font.c | 32 | ||||
-rw-r--r-- | MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabase.h | 2 |
2 files changed, 17 insertions, 17 deletions
diff --git a/MdeModulePkg/Universal/HiiDatabaseDxe/Font.c b/MdeModulePkg/Universal/HiiDatabaseDxe/Font.c index a5363d43bd..2df03fc8d9 100644 --- a/MdeModulePkg/Universal/HiiDatabaseDxe/Font.c +++ b/MdeModulePkg/Universal/HiiDatabaseDxe/Font.c @@ -29,22 +29,22 @@ static EFI_GRAPHICS_OUTPUT_BLT_PIXEL mEfiColors[16] = { //
// B G R
//
- 0x00, 0x00, 0x00, 0x00, // BLACK
- 0x98, 0x00, 0x00, 0x00, // BLUE
- 0x00, 0x98, 0x00, 0x00, // GREEN
- 0x98, 0x98, 0x00, 0x00, // CYAN
- 0x00, 0x00, 0x98, 0x00, // RED
- 0x98, 0x00, 0x98, 0x00, // MAGENTA
- 0x00, 0x98, 0x98, 0x00, // BROWN
- 0x98, 0x98, 0x98, 0x00, // LIGHTGRAY
- 0x30, 0x30, 0x30, 0x00, // DARKGRAY - BRIGHT BLACK
- 0xff, 0x00, 0x00, 0x00, // LIGHTBLUE
- 0x00, 0xff, 0x00, 0x00, // LIGHTGREEN
- 0xff, 0xff, 0x00, 0x00, // LIGHTCYAN
- 0x00, 0x00, 0xff, 0x00, // LIGHTRED
- 0xff, 0x00, 0xff, 0x00, // LIGHTMAGENTA
- 0x00, 0xff, 0xff, 0x00, // YELLOW
- 0xff, 0xff, 0xff, 0x00, // WHITE
+ {0x00, 0x00, 0x00, 0x00}, // BLACK
+ {0x98, 0x00, 0x00, 0x00}, // BLUE
+ {0x00, 0x98, 0x00, 0x00}, // GREEN
+ {0x98, 0x98, 0x00, 0x00}, // CYAN
+ {0x00, 0x00, 0x98, 0x00}, // RED
+ {0x98, 0x00, 0x98, 0x00}, // MAGENTA
+ {0x00, 0x98, 0x98, 0x00}, // BROWN
+ {0x98, 0x98, 0x98, 0x00}, // LIGHTGRAY
+ {0x30, 0x30, 0x30, 0x00}, // DARKGRAY - BRIGHT BLACK
+ {0xff, 0x00, 0x00, 0x00}, // LIGHTBLUE
+ {0x00, 0xff, 0x00, 0x00}, // LIGHTGREEN
+ {0xff, 0xff, 0x00, 0x00}, // LIGHTCYAN
+ {0x00, 0x00, 0xff, 0x00}, // LIGHTRED
+ {0xff, 0x00, 0xff, 0x00}, // LIGHTMAGENTA
+ {0x00, 0xff, 0xff, 0x00}, // YELLOW
+ {0xff, 0xff, 0xff, 0x00}, // WHITE
};
diff --git a/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabase.h b/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabase.h index cf3519b853..7a311f28d1 100644 --- a/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabase.h +++ b/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabase.h @@ -50,7 +50,7 @@ Revision History #define HII_DATABASE_NOTIFY_GUID \ { \ - 0xc1c76, 0xd79e, 0x42fe, 0x86, 0xb, 0x8b, 0xe8, 0x7b, 0x3e, 0x7a, 0x78 \ + 0xc1c76, 0xd79e, 0x42fe, {0x86, 0xb, 0x8b, 0xe8, 0x7b, 0x3e, 0x7a, 0x78} \ } #define MAX_STRING_LENGTH 1024 |