mirror of
https://github.com/reactos/reactos.git
synced 2025-05-21 10:05:35 +00:00
[NTVDM]: disable the cpu level dprints.
svn path=/trunk/; revision=64553
This commit is contained in:
parent
dc6d1450bc
commit
2085ccaf46
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue