Author: hbelusca
Date: Sun Oct  5 22:47:37 2014
New Revision: 64553

URL: http://svn.reactos.org/svn/reactos?rev=64553&view=rev
Log:
[NTVDM]: disable the cpu level dprints.

Modified:
    trunk/reactos/subsystems/ntvdm/cpu/cpu.c

Modified: trunk/reactos/subsystems/ntvdm/cpu/cpu.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/ntvdm/cpu/cpu.c?rev=64553&r1=64552&r2=64553&view=diff
==============================================================================
--- trunk/reactos/subsystems/ntvdm/cpu/cpu.c    [iso-8859-1] (original)
+++ trunk/reactos/subsystems/ntvdm/cpu/cpu.c    [iso-8859-1] Sun Oct  5 
22:47:37 2014
@@ -124,12 +124,12 @@
         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;
 


Reply via email to