DSPTool: show hex and substitute names by default for disasm

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5022 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2010-02-07 01:03:31 +00:00
parent f3868dd491
commit 887d61ec17
1 changed files with 2 additions and 2 deletions

View File

@ -54,10 +54,10 @@ bool Disassemble(const std::vector<u16> &code, bool line_numbers, std::string &t
AssemblerSettings settings;
// These two prevent roundtripping.
settings.show_hex = false;
settings.show_hex = true;
settings.show_pc = line_numbers;
settings.ext_separator = '\'';
settings.decode_names = false;
settings.decode_names = true;
settings.decode_registers = true;
DSPDisassembler disasm(settings);