Optimize RSX Debugger

This commit is contained in:
Eladash 2023-07-31 10:24:16 +03:00 committed by Elad Ashkenazi
parent 53c1da8f94
commit b12edf70bb
7 changed files with 622 additions and 592 deletions

View file

@ -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';
}
}