[NTVDM]: Code formatting and add a warning about the usage of callbacks.
[reactos.git] / reactos / subsystems / ntvdm / hardware / mouse.c
index 63399d9..65727d1 100644 (file)
@@ -121,7 +121,7 @@ static VOID MouseGetPacket(PMOUSE_PACKET Packet)
 VOID MouseUpdatePosition(PCOORD NewPosition)
 {
     /* Update the counters */
-    HorzCounter += ((NewPosition->X - Position.X) * WidthMm * Resolution) / WidthPixels;
+    HorzCounter += ((NewPosition->X - Position.X) * WidthMm  * Resolution) / WidthPixels;
     VertCounter += ((NewPosition->Y - Position.Y) * HeightMm * Resolution) / HeightPixels;
 
     /* Update the position */