[NTVDM]: disable the cpu level dprints.
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 5 Oct 2014 22:47:37 +0000 (22:47 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 5 Oct 2014 22:47:37 +0000 (22:47 +0000)
svn path=/trunk/; revision=64553

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;