mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-01 01:20:40 +00:00
DSPDisassembler: directly initialize AssemblerSettings struct members
Same thing, less code.
This commit is contained in:
parent
9f164d7c33
commit
2cfc0dc8b6
@ -18,22 +18,16 @@ namespace DSP
|
|||||||
{
|
{
|
||||||
struct AssemblerSettings
|
struct AssemblerSettings
|
||||||
{
|
{
|
||||||
AssemblerSettings()
|
bool print_tabs = false;
|
||||||
: print_tabs(false), show_hex(false), show_pc(false), force(false), decode_names(true),
|
bool show_hex = false;
|
||||||
decode_registers(true), ext_separator('\''), lower_case_ops(true), pc(0)
|
bool show_pc = false;
|
||||||
{
|
bool force = false;
|
||||||
}
|
bool decode_names = true;
|
||||||
|
bool decode_registers = true;
|
||||||
|
char ext_separator = '\'';
|
||||||
|
bool lower_case_ops = true;
|
||||||
|
|
||||||
bool print_tabs;
|
u16 pc = 0;
|
||||||
bool show_hex;
|
|
||||||
bool show_pc;
|
|
||||||
bool force;
|
|
||||||
bool decode_names;
|
|
||||||
bool decode_registers;
|
|
||||||
char ext_separator;
|
|
||||||
bool lower_case_ops;
|
|
||||||
|
|
||||||
u16 pc;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class DSPDisassembler
|
class DSPDisassembler
|
||||||
|
Loading…
x
Reference in New Issue
Block a user