[HALX64] Do not claim to handle display reset if you don't. Fix bootvid display initialization in x64 as a result.

The HalpBiosDisplayReset() function is currently stub-plemented.
Returning FALSE will make bootvid take the route of fully
re-initializing the VGA display all by itself.
This commit is contained in:
Hermès Bélusca-Maïto 2022-03-28 00:28:35 +02:00
parent 38b38bbf0c
commit 215148267e
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -510,7 +510,9 @@ HalpBiosDisplayReset(VOID)
/* Restore previous flags */
__writeeflags(OldEflags);
#endif
return TRUE;
#else
/* This x64 HAL does NOT currently handle display reset (TODO) */
return FALSE;
#endif
}