Author: fireball
Date: Sun Feb 11 16:37:39 2007
New Revision: 25783
URL:
http://svn.reactos.org/svn/reactos?rev=25783&view=rev
Log:
Right now, it's not enough to just set the bios video mode to 0x12, other stuff like
choosing correct font is needed.
Fixes "no text output in 1st stage setup" bug (and it still sets the videomode
to 0x12, so it's not a hack).
Modified:
trunk/reactos/boot/freeldr/freeldr/arch/i386/pcvideo.c
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/pcvideo.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/i386/pcvideo.c (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/i386/pcvideo.c Sun Feb 11 16:37:39 2007
@@ -1108,7 +1108,7 @@
VOID
PcVideoPrepareForReactOS(VOID)
{
- PcVideoSetBiosMode(0x12);
+ PcVideoSetMode80x50_80x43();
PcVideoHideShowTextCursor(FALSE);
}