[NTVDM]: disable the cpu level dprints.

svn path=/trunk/; revision=64553
This commit is contained in:
Hermès Bélusca-Maïto 2014-10-05 22:47:37 +00:00
parent dc6d1450bc
commit 2085ccaf46

View 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;