mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-02-06 10:48:09 +08: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