mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-24 14:49:53 -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:
@ -31,9 +31,10 @@
|
||||
#include <QScreen>
|
||||
#include <QCloseEvent>
|
||||
|
||||
#include "EmuInstance.h"
|
||||
#include "Window.h"
|
||||
#include "EmuThread.h"
|
||||
#include "FrontendUtil.h"
|
||||
#include "ScreenLayout.h"
|
||||
|
||||
class MelonApplication : public QApplication
|
||||
{
|
||||
@ -45,5 +46,10 @@ public:
|
||||
};
|
||||
|
||||
extern QString* systemThemeName;
|
||||
extern QString emuDirectory;
|
||||
|
||||
bool createEmuInstance();
|
||||
void deleteEmuInstance(int id);
|
||||
void deleteAllEmuInstances();
|
||||
|
||||
#endif // MAIN_H
|
||||
|
Reference in New Issue
Block a user