mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
Optimize RSX Debugger
This commit is contained in:
parent
53c1da8f94
commit
b12edf70bb
7 changed files with 622 additions and 592 deletions
|
@ -3198,7 +3198,9 @@ namespace rsx
|
|||
}
|
||||
}
|
||||
|
||||
fmt::append(result, "[%04x] %s\n", i, ensure(rsx::get_pretty_printing_function(i))(i, method_registers.registers[i]));
|
||||
fmt::append(result, "[%04x] ", i);
|
||||
ensure(rsx::get_pretty_printing_function(i))(result, i, method_registers.registers[i]);
|
||||
result += '\n';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue