mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 16:35:06 +01:00
Merge pull request #1011 from lioncash/initializer
citra-qt: Adjust initializer list order
This commit is contained in:
commit
9221e6e67a
@ -94,7 +94,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread) :
|
GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread) :
|
||||||
QWidget(parent), emu_thread(emu_thread), keyboard_id(0) {
|
QWidget(parent), keyboard_id(0), emu_thread(emu_thread) {
|
||||||
|
|
||||||
std::string window_title = Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc);
|
std::string window_title = Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc);
|
||||||
setWindowTitle(QString::fromStdString(window_title));
|
setWindowTitle(QString::fromStdString(window_title));
|
||||||
|
@ -159,7 +159,7 @@ void DisassemblerModel::SetNextInstruction(unsigned int address) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
DisassemblerWidget::DisassemblerWidget(QWidget* parent, EmuThread* emu_thread) :
|
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);
|
disasm_ui.setupUi(this);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user