mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-28 20:47:54 -05:00
citra-qt: Adjust initializer list order
Silences a warning.
This commit is contained in:
@ -159,7 +159,7 @@ void DisassemblerModel::SetNextInstruction(unsigned int address) {
|
||||
}
|
||||
|
||||
DisassemblerWidget::DisassemblerWidget(QWidget* parent, EmuThread* emu_thread) :
|
||||
QDockWidget(parent), emu_thread(emu_thread), base_addr(0) {
|
||||
QDockWidget(parent), base_addr(0), emu_thread(emu_thread) {
|
||||
|
||||
disasm_ui.setupUi(this);
|
||||
|
||||
|
Reference in New Issue
Block a user