[NTVDM]: disable the cpu level dprints.
[reactos.git] / reactos / subsystems / ntvdm / cpu / cpu.c
index bb09cd0..662edfc 100644 (file)
@@ -124,12 +124,12 @@ VOID CpuSimulate(VOID)
         return;
     }
     CpuCallLevel++;
-    DPRINT1("CpuSimulate --> Level %d\n", CpuCallLevel);
+    DPRINT("CpuSimulate --> Level %d\n", CpuCallLevel);
 
     CpuRunning = TRUE;
     while (VdmRunning && CpuRunning) ClockUpdate();
 
-    DPRINT1("CpuSimulate <-- Level %d\n", CpuCallLevel);
+    DPRINT("CpuSimulate <-- Level %d\n", CpuCallLevel);
     CpuCallLevel--;
     if (CpuCallLevel < 0) CpuCallLevel = 0;