From: Hermès Bélusca-Maïto Date: Sun, 5 Oct 2014 22:47:37 +0000 (+0000) Subject: [NTVDM]: disable the cpu level dprints. X-Git-Tag: backups/0.3.17@66124~196 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=2085ccaf4691869f28bc69999e6c86554044d09c;hp=dc6d1450bc0f266d02fe1c8505cfe9c6e2c631b1 [NTVDM]: disable the cpu level dprints. svn path=/trunk/; revision=64553 --- diff --git a/reactos/subsystems/ntvdm/cpu/cpu.c b/reactos/subsystems/ntvdm/cpu/cpu.c index bb09cd02662..662edfcb4e0 100644 --- a/reactos/subsystems/ntvdm/cpu/cpu.c +++ b/reactos/subsystems/ntvdm/cpu/cpu.c @@ -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;