General protection faults are only disabled if error is 0x82.

This commit is contained in:
OBattler
2016-08-10 02:16:12 +02:00
parent ecdce7523f
commit 8d39f0ac76

View File

@@ -145,7 +145,7 @@ void x86_doabrt(int x86_abrt)
}
void x86gpf(char *s, uint16_t error)
{
return;
if (error == 0x82) return;
pclog("GPF %04X : %s\n", error, s);
abrt = ABRT_GPF;
abrt_error = error;