diff --git a/subsystems/ntvdm/bios.c b/subsystems/ntvdm/bios.c index a3f0af7ac03..8ae54843785 100644 --- a/subsystems/ntvdm/bios.c +++ b/subsystems/ntvdm/bios.c @@ -326,9 +326,9 @@ BOOLEAN BiosSetVideoPage(BYTE PageNumber) /* Set the start address in the CRTC */ VgaWritePort(VGA_CRTC_INDEX, VGA_CRTC_CURSOR_LOC_LOW_REG); - VgaWritePort(VGA_CRTC_DATA, LOBYTE(Bda->VideoPageOffset)); + VgaWritePort(VGA_CRTC_DATA , LOBYTE(Bda->VideoPageOffset)); VgaWritePort(VGA_CRTC_INDEX, VGA_CRTC_CURSOR_LOC_HIGH_REG); - VgaWritePort(VGA_CRTC_DATA, HIBYTE(Bda->VideoPageOffset)); + VgaWritePort(VGA_CRTC_DATA , HIBYTE(Bda->VideoPageOffset)); return TRUE; } diff --git a/subsystems/ntvdm/ntvdm.h b/subsystems/ntvdm/ntvdm.h index c7810ed7207..9a04e0d3d2b 100644 --- a/subsystems/ntvdm/ntvdm.h +++ b/subsystems/ntvdm/ntvdm.h @@ -12,7 +12,6 @@ /* INCLUDES *******************************************************************/ #include -#include #include #include #include diff --git a/subsystems/ntvdm/ps2.c b/subsystems/ntvdm/ps2.c index 94744f834ee..7b51b5ba426 100644 --- a/subsystems/ntvdm/ps2.c +++ b/subsystems/ntvdm/ps2.c @@ -312,4 +312,3 @@ Cleanup: } /* EOF */ - diff --git a/subsystems/ntvdm/timer.c b/subsystems/ntvdm/timer.c index b4b1d0b034f..bdb45c4438e 100644 --- a/subsystems/ntvdm/timer.c +++ b/subsystems/ntvdm/timer.c @@ -234,4 +234,3 @@ VOID PitDecrementCount() } /* EOF */ -