mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
SPU: fix some wierd typos (may be wrong, no idea)
This commit is contained in:
parent
105c694903
commit
a597368c46
3 changed files with 5 additions and 5 deletions
|
@ -4068,9 +4068,9 @@ bool spu_thread::is_exec_code(u32 addr, std::span<const u8> ls_ptr, u32 base_add
|
|||
// Test the validity of a single instruction of the optional target
|
||||
// This function can't be too slow and is unlikely to improve results by a great deal
|
||||
const u32 op0 = read_from_ptr<be_t<u32>>(ls_ptr, route_pc - base_addr);
|
||||
const auto type0 = s_spu_itype.decode(op);
|
||||
const spu_itype::type type0 = s_spu_itype.decode(op0);
|
||||
|
||||
if (type == spu_itype::UNK || !op)
|
||||
if (type0 == spu_itype::UNK || !op0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue