[HAL] HalInitializeBios() should not explicitly call HalpBiosDisplayReset().

While the BIOS support for INT10h emulation has been set up, any
modification of the display should wait until the kernel requests
video initialization with INBV/bootvid.
The latter will call HalResetDisplay() (that calls HalpBiosDisplayReset())
at the correct time.
This avoids an useless video mode change and reset when booting ReactOS.
This commit is contained in:
Hermès Bélusca-Maïto 2024-02-06 20:01:53 +01:00
parent adf534b284
commit 46831c537f
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -143,8 +143,6 @@ HalInitializeBios(
//DbgDumpPage(x86BiosMemoryMapping, 0xc351);
x86BiosIsInitialized = TRUE;
HalpBiosDisplayReset();
}
}