mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Qt build broke
This commit is contained in:
parent
6ffefb49b2
commit
15c2853035
3 changed files with 3 additions and 3 deletions
|
@ -150,7 +150,7 @@ void EmuThread::run()
|
|||
setCurrentThreadName("EmuThread");
|
||||
|
||||
host->UpdateUI();
|
||||
host->InitGL();
|
||||
host->InitGL(0);
|
||||
|
||||
EmuThread_LockDraw(true);
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ QtHost::QtHost(MainWindow *mainWindow_)
|
|||
QObject::connect(this,SIGNAL(BootDoneSignal()),mainWindow,SLOT(Boot()));
|
||||
}
|
||||
|
||||
void QtHost::InitGL()
|
||||
bool QtHost::InitGL(std::string *error_string)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ public:
|
|||
|
||||
void AddSymbol(std::string name, u32 addr, u32 size, int type);
|
||||
|
||||
void InitGL();
|
||||
bool InitGL(std::string *error_string);
|
||||
void BeginFrame();
|
||||
void EndFrame();
|
||||
void ShutdownGL();
|
||||
|
|
Loading…
Add table
Reference in a new issue