Qt build broke

This commit is contained in:
Xele02 2013-03-11 08:30:38 +01:00
parent 6ffefb49b2
commit 15c2853035
3 changed files with 3 additions and 3 deletions

View file

@ -150,7 +150,7 @@ void EmuThread::run()
setCurrentThreadName("EmuThread");
host->UpdateUI();
host->InitGL();
host->InitGL(0);
EmuThread_LockDraw(true);

View file

@ -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)
{
}

View file

@ -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();