[NTVDM]: Add debug print for timer ticks to try to find why the emulator sometimes...
[reactos.git] / 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;
         }