reimplement MP audio mode 2 (active instance only)

This commit is contained in:
Arisotura
2024-11-01 02:19:29 +01:00
parent 58ee191cc8
commit 7740634e6a
4 changed files with 37 additions and 6 deletions

View File

@ -131,6 +131,10 @@ public:
void onAppStateChanged(Qt::ApplicationState state);
void onFocusIn();
void onFocusOut();
bool isFocused() { return focused; }
void osdAddMessage(unsigned int color, const char* msg);
// called when the MP interface is changed
@ -264,6 +268,8 @@ private:
int windowID;
bool enabledSaved;
bool focused;
EmuInstance* emuInstance;
EmuThread* emuThread;