This commit is contained in:
RSDuck 2022-10-13 19:45:40 +02:00
parent 4b0fc122a2
commit af8efe1119
2 changed files with 2 additions and 6 deletions

View File

@ -776,9 +776,6 @@ void EmuThread::run()
GPU::DeInitRenderer();
NDS::DeInit();
//Platform::LAN_DeInit();
if (oglContext)
deinitOpenGL();
}
void EmuThread::changeWindowTitle(char* title)

View File

@ -48,9 +48,6 @@ class EmuThread : public QThread
public:
explicit EmuThread(QObject* parent = nullptr);
void initOpenGL();
void deinitOpenGL();
void changeWindowTitle(char* title);
// to be called from the UI thread
@ -91,6 +88,8 @@ signals:
private:
void drawScreenGL();
void initOpenGL();
void deinitOpenGL();
std::atomic<int> EmuStatus;
int PrevEmuStatus;