mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[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:
parent
38b38bbf0c
commit
215148267e
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue