early-access version 3786

This commit is contained in:
pineappleEA
2023-08-01 12:33:00 +02:00
parent 04f356bb47
commit 2fafeb5013
25 changed files with 187 additions and 215 deletions

View File

@@ -188,7 +188,7 @@ public:
}
bool IsInterrupted() {
return parent.system.Kernel().PhysicalCore(parent.core_index).IsInterrupted();
return parent.system.Kernel().PhysicalCore(parent.core_index).GetIsInterrupted();
}
ARM_Dynarmic_32& parent;

View File

@@ -233,7 +233,7 @@ public:
}
bool IsInterrupted() {
return parent.system.Kernel().PhysicalCore(parent.core_index).IsInterrupted();
return parent.system.Kernel().PhysicalCore(parent.core_index).GetIsInterrupted();
}
ARM_Dynarmic_64& parent;