PPCAnalyst: Get rid of two casts

HostRead_Instruction does the same thing behind the scenes without casts.
This commit is contained in:
Lioncash 2016-09-29 18:14:38 -04:00
parent a714460ee3
commit e1705ba6c5
1 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ bool AnalyzeFunction(u32 startAddr, Symbol& func, int max_size)
if (func.size >= CODEBUFFER_SIZE * 4) // weird if (func.size >= CODEBUFFER_SIZE * 4) // weird
return false; return false;
UGeckoInstruction instr = (UGeckoInstruction)PowerPC::HostRead_U32(addr); const UGeckoInstruction instr = PowerPC::HostRead_Instruction(addr);
if (max_size && func.size > max_size) if (max_size && func.size > max_size)
{ {
func.address = startAddr; func.address = startAddr;
@ -269,7 +269,7 @@ static void FindFunctionsFromBranches(u32 startAddr, u32 endAddr, SymbolDB* func
{ {
for (u32 addr = startAddr; addr < endAddr; addr += 4) for (u32 addr = startAddr; addr < endAddr; addr += 4)
{ {
UGeckoInstruction instr = (UGeckoInstruction)PowerPC::HostRead_U32(addr); const UGeckoInstruction instr = PowerPC::HostRead_Instruction(addr);
if (PPCTables::IsValidInstruction(instr)) if (PPCTables::IsValidInstruction(instr))
{ {