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:
Arisotura
2024-06-15 13:52:47 +02:00
committed by GitHub
parent 8e9b88d01d
commit 25a7b1ca1d
111 changed files with 16802 additions and 5042 deletions

View File

@ -26,6 +26,8 @@
namespace Ui {class DateTimeDialog; }
class DateTimeDialog;
class EmuInstance;
class DateTimeDialog : public QDialog
{
Q_OBJECT
@ -63,6 +65,7 @@ private slots:
private:
Ui::DateTimeDialog* ui;
EmuInstance* emuInstance;
QDateTime customTime;
};