[NTVDM]: Add debug print for timer ticks to try to find why the emulator sometimes...
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Tue, 28 Jan 2014 20:39:16 +0000 (20:39 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Tue, 28 Jan 2014 20:39:16 +0000 (20:39 +0000)
svn path=/branches/ntvdm/; revision=61867

subsystems/ntvdm/ntvdm.c

index 9d5e6cf..004c42e 100644 (file)
@@ -331,7 +331,7 @@ INT wmain(INT argc, WCHAR *argv[])
 #ifdef IPS_DISPLAY
         if ((CurrentTickCount - LastCyclePrintout) >= 1000)
         {
-            DPRINT1("NTVDM: %lu Instructions Per Second\n", Cycles);
+            DPRINT1("NTVDM: %lu Instructions Per Second; TimerTicks = %lu\n", Cycles, TimerTicks);
             LastCyclePrintout = CurrentTickCount;
             Cycles = 0;
         }