mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-29 09:10:08 -06:00
merge doublemelon (#2067)
non-exhaustive (but exhausting) list of changes: * base laid for multiple window support, but will likely require more work to work correctly * encapsulation of frontend state for proper multi-instance support * (JIT still needs a fix for the NDS::Current workaround but we can get there later) * new, more flexible configuration system
This commit is contained in:
@ -24,6 +24,8 @@
|
||||
namespace Ui { class InterfaceSettingsDialog; }
|
||||
class InterfaceSettingsDialog;
|
||||
|
||||
class EmuInstance;
|
||||
|
||||
class InterfaceSettingsDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
@ -51,7 +53,7 @@ public:
|
||||
}
|
||||
|
||||
signals:
|
||||
void updateMouseTimer();
|
||||
void updateInterfaceSettings();
|
||||
|
||||
private slots:
|
||||
void done(int r);
|
||||
@ -60,6 +62,8 @@ private slots:
|
||||
|
||||
private:
|
||||
Ui::InterfaceSettingsDialog* ui;
|
||||
|
||||
EmuInstance* emuInstance;
|
||||
};
|
||||
|
||||
#endif // INTERFACESETTINGSDIALOG_H
|
||||
|
Reference in New Issue
Block a user