Fix inconsistenly-named frame_buffer_size

This commit is contained in:
Justin C. Miller
2018-04-24 08:36:21 -07:00
parent 94de87ef86
commit 7e462319c9
2 changed files with 2 additions and 2 deletions

View File

@@ -145,7 +145,7 @@ efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *system_table)
status = con_get_framebuffer( status = con_get_framebuffer(
bootsvc, bootsvc,
&data_header->frame_buffer, &data_header->frame_buffer,
&data_header->frame_buffer_size, &data_header->frame_buffer_length,
&data_header->hres, &data_header->hres,
&data_header->vres, &data_header->vres,
&data_header->rmask, &data_header->rmask,

View File

@@ -34,7 +34,7 @@ struct popcorn_data {
void *acpi_table; void *acpi_table;
void *frame_buffer; void *frame_buffer;
size_t frame_buffer_size; size_t frame_buffer_length;
uint32_t hres; uint32_t hres;
uint32_t vres; uint32_t vres;
uint32_t rmask; uint32_t rmask;