mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 22:29:47 -06:00
FPS counter is back
This commit is contained in:
@ -33,12 +33,17 @@ class EmuThread : public QThread
|
||||
public:
|
||||
explicit EmuThread(QObject* parent = nullptr);
|
||||
|
||||
void changeWindowTitle(char* title);
|
||||
|
||||
// to be called from the UI thread
|
||||
void emuRun();
|
||||
void emuPause(bool refresh);
|
||||
void emuUnpause();
|
||||
void emuStop();
|
||||
|
||||
signals:
|
||||
void windowTitleChange(QString title);
|
||||
|
||||
private:
|
||||
volatile int EmuStatus;
|
||||
int PrevEmuStatus;
|
||||
@ -73,6 +78,8 @@ public:
|
||||
private slots:
|
||||
void onOpenFile();
|
||||
|
||||
void onTitleUpdate(QString title);
|
||||
|
||||
private:
|
||||
MainWindowPanel* panel;
|
||||
};
|
||||
|
Reference in New Issue
Block a user