early-access version 3790

This commit is contained in:
pineappleEA
2023-08-03 02:08:37 +02:00
parent b8064464d8
commit a61e0cf970
28 changed files with 270 additions and 190 deletions

View File

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

View File

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