mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
16 lines
297 B
C++
16 lines
297 B
C++
#include "EmuThread.h"
|
|
#include "Core/System.h"
|
|
|
|
#include <QString>
|
|
|
|
void EmuThread_LockDraw(bool value)
|
|
{
|
|
// left there just to avoid compilation problems, this is called a lot
|
|
// in debuggers
|
|
}
|
|
|
|
QString GetCurrentFilename()
|
|
{
|
|
return QString::fromStdString(PSP_CoreParameter().fileToStart);
|
|
}
|