mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-23 11:35:19 +01:00
7c0aa811ec
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
24 lines
378 B
C
24 lines
378 B
C
/*
|
|
* Copyright (c) 2009 Evan Lojewski. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#include "915resolution.h"
|
|
//#include "gui.h"
|
|
|
|
EFI_STATUS
|
|
EFIAPI
|
|
Resolution_start (
|
|
IN EFI_HANDLE ImageHandle,
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
)
|
|
{
|
|
//UINT32 bp = 0;
|
|
//UINT32 x, y;
|
|
AsciiPrint("Video BIOS patcher\n");
|
|
patchVideoBios();
|
|
//getResolution(&x, &y, &bp);
|
|
return EFI_SUCCESS;
|
|
}
|
|
|