mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Core/UICommon: Fix assignment to pointer
This commit is contained in:
parent
3bf92e76e5
commit
e5980f280d
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ std::string DisassembleBlock(HostDisassembler* disasm, u32* address, u32* host_i
|
|||
}
|
||||
else if (res == 2)
|
||||
{
|
||||
host_instructions_count = 0;
|
||||
*host_instructions_count = 0;
|
||||
return "(No translation)";
|
||||
}
|
||||
return disasm->DisassembleHostBlock(code, *code_size, host_instructions_count, (u64)code);
|
||||
|
|
Loading…
Add table
Reference in a new issue