From 2085ccaf4691869f28bc69999e6c86554044d09c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 5 Oct 2014 22:47:37 +0000 Subject: [PATCH 1/1] [NTVDM]: disable the cpu level dprints. svn path=/trunk/; revision=64553 --- reactos/subsystems/ntvdm/cpu/cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.17.1