citra-qt: Adjust initializer list order

Silences a warning.
This commit is contained in:
Lioncash 2015-07-29 12:00:57 -04:00
parent 8165de065b
commit 5df3afd522
2 changed files with 2 additions and 2 deletions

View file

@ -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);