Removed excess logging from 386_common.c.

This commit is contained in:
OBattler
2021-08-20 17:31:18 +02:00
parent fed369c56f
commit fe5955e477

View File

@@ -1306,11 +1306,6 @@ leave_smm(void)
x386_common_log("EAX = %08X, EBX = %08X, ECX = %08X, EDX = %08X, ESI = %08X, EDI = %08X, ESP = %08X, EBP = %08X\n",
EAX, EBX, ECX, EDX, ESI, EDI, ESP, EBP);
x386_common_log("leave_smm()\n");
if (cr0 & 1)
pclog("%s mode\n", (cpu_state.eflags & VM_FLAG) ? "V86" : "Protected");
else
pclog("Real mode\n");
}