[NTVDM]: Code formatting and add a warning about the usage of callbacks.

svn path=/trunk/; revision=64147
This commit is contained in:
Hermès Bélusca-Maïto 2014-09-14 14:59:20 +00:00
parent dcade423c6
commit 2f4bbc8355
2 changed files with 9 additions and 1 deletions

View file

@ -7,6 +7,14 @@
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
*/
/******************************************************************************\
| WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
|
| Callbacks support supposes implicitely that the callbacks are used
| in the SAME thread as the CPU thread, otherwise messing in parallel
| with the CPU registers is 100% prone to bugs!!
\******************************************************************************/
/* INCLUDES *******************************************************************/
#define NDEBUG

View 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 */