mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 02:34:11 +01:00 
			
		
		
		
	dmnt: cheat: Invalidate cache on memory writes
This commit is contained in:
		
							parent
							
								
									c10e720ba9
								
							
						
					
					
						commit
						9858ea79fb
					
				| @ -5,6 +5,7 @@ | ||||
| #include "common/hex_util.h" | ||||
| #include "common/microprofile.h" | ||||
| #include "common/swap.h" | ||||
| #include "core/arm/debug.h" | ||||
| #include "core/core.h" | ||||
| #include "core/core_timing.h" | ||||
| #include "core/hle/kernel/k_page_table.h" | ||||
| @ -63,7 +64,9 @@ void StandardVmCallbacks::MemoryWriteUnsafe(VAddr address, const void* data, u64 | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     system.ApplicationMemory().WriteBlock(address, data, size); | ||||
|     if (system.ApplicationMemory().WriteBlock(address, data, size)) { | ||||
|         Core::InvalidateInstructionCacheRange(system.ApplicationProcess(), address, size); | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| u64 StandardVmCallbacks::HidKeysDown() { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user