mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-27 12:15:19 +01:00
update about menu
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
This commit is contained in:
parent
8541a85391
commit
8d75c1909e
@ -621,9 +621,9 @@ void nsvg__deleteParser(NSVGparser* p)
|
|||||||
attr->fontFace = NULL;
|
attr->fontFace = NULL;
|
||||||
}
|
}
|
||||||
while (attr->group) {
|
while (attr->group) {
|
||||||
NSVGgroup* group = attr->group;
|
NSVGgroup* group = attr->group->next;
|
||||||
FreePool(attr->group);
|
FreePool(attr->group);
|
||||||
attr->group = group->next;
|
attr->group = group;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FreePool(p);
|
FreePool(p);
|
||||||
|
@ -1392,10 +1392,12 @@ VOID AboutRefit(VOID)
|
|||||||
AboutMenu.AddMenuInfo(L" Platform: i386 (32 bit)");
|
AboutMenu.AddMenuInfo(L" Platform: i386 (32 bit)");
|
||||||
#elif defined(MDE_CPU_X64)
|
#elif defined(MDE_CPU_X64)
|
||||||
AboutMenu.AddMenuInfo(L" Platform: x86_64 (64 bit)");
|
AboutMenu.AddMenuInfo(L" Platform: x86_64 (64 bit)");
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
AboutMenu.AddMenuInfo(L" Platform: x86_64 (64 bit) VS");
|
||||||
#else
|
#else
|
||||||
AboutMenu.AddMenuInfo(L" Platform: unknown");
|
AboutMenu.AddMenuInfo(L" Platform: unknown");
|
||||||
#endif
|
#endif
|
||||||
AboutMenu.AddMenuInfo(PoolPrint(L" Firmware: %s rev %d.%d", gST->FirmwareVendor, gST->FirmwareRevision >> 16, gST->FirmwareRevision & ((1 << 16) - 1)));
|
AboutMenu.AddMenuInfo(PoolPrint(L" Firmware: %s rev %d.%04d", gST->FirmwareVendor, gST->FirmwareRevision >> 16, gST->FirmwareRevision & ((1 << 16) - 1)));
|
||||||
AboutMenu.AddMenuInfo(PoolPrint(L" Screen Output: %s", egScreenDescription()));
|
AboutMenu.AddMenuInfo(PoolPrint(L" Screen Output: %s", egScreenDescription()));
|
||||||
AboutMenu.AnimeRun = AboutMenu.GetAnime();
|
AboutMenu.AnimeRun = AboutMenu.GetAnime();
|
||||||
AboutMenu.AddMenuEntry(&MenuEntryReturn, false);
|
AboutMenu.AddMenuEntry(&MenuEntryReturn, false);
|
||||||
|
Loading…
Reference in New Issue
Block a user