mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #2288 from lioncash/linkage
core/cheat_engine: Make MemoryReadImpl and MemoryWriteImpl internally linked
This commit is contained in:
		
						commit
						b93a8a368f
					
				@ -423,6 +423,7 @@ std::array<u8, 16> TextCheatParser::ParseSingleLineCheat(const std::string& line
 | 
				
			|||||||
    return out;
 | 
					    return out;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace {
 | 
				
			||||||
u64 MemoryReadImpl(u32 width, VAddr addr) {
 | 
					u64 MemoryReadImpl(u32 width, VAddr addr) {
 | 
				
			||||||
    switch (width) {
 | 
					    switch (width) {
 | 
				
			||||||
    case 1:
 | 
					    case 1:
 | 
				
			||||||
@ -457,6 +458,7 @@ void MemoryWriteImpl(u32 width, VAddr addr, u64 value) {
 | 
				
			|||||||
        UNREACHABLE();
 | 
					        UNREACHABLE();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					} // Anonymous namespace
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CheatEngine::CheatEngine(Core::System& system, std::vector<CheatList> cheats_,
 | 
					CheatEngine::CheatEngine(Core::System& system, std::vector<CheatList> cheats_,
 | 
				
			||||||
                         const std::string& build_id, VAddr code_region_start,
 | 
					                         const std::string& build_id, VAddr code_region_start,
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user