Merge pull request #8202 from merryhime/fix-single-core
dynarmic: Fix single core mode
This commit is contained in:
		| @@ -232,7 +232,7 @@ void ARM_Dynarmic_32::Run() { | ||||
|         if (Has(hr, svc_call)) { | ||||
|             Kernel::Svc::Call(system, svc_swi); | ||||
|         } | ||||
|         if (Has(hr, break_loop)) { | ||||
|         if (Has(hr, break_loop) || !uses_wall_clock) { | ||||
|             break; | ||||
|         } | ||||
|     } | ||||
|   | ||||
| @@ -293,7 +293,7 @@ void ARM_Dynarmic_64::Run() { | ||||
|         if (Has(hr, svc_call)) { | ||||
|             Kernel::Svc::Call(system, svc_swi); | ||||
|         } | ||||
|         if (Has(hr, break_loop)) { | ||||
|         if (Has(hr, break_loop) || !uses_wall_clock) { | ||||
|             break; | ||||
|         } | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user