mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-11 00:56:37 +00:00
This mutex should not have been made local, thanks @unknownbrackets
This commit is contained in:
parent
a8310249f8
commit
ad5bf8c6f6
@ -30,6 +30,8 @@ extern "C"
|
|||||||
#include "ext/libkirk/kirk_engine.h"
|
#include "ext/libkirk/kirk_engine.h"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
std::mutex NPDRMDemoBlockDevice::mutex_;
|
||||||
|
|
||||||
BlockDevice *constructBlockDevice(FileLoader *fileLoader) {
|
BlockDevice *constructBlockDevice(FileLoader *fileLoader) {
|
||||||
// Check for CISO
|
// Check for CISO
|
||||||
if (!fileLoader->Exists())
|
if (!fileLoader->Exists())
|
||||||
|
@ -105,7 +105,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
FileLoader *fileLoader_;
|
FileLoader *fileLoader_;
|
||||||
std::mutex mutex_;
|
static std::mutex mutex_;
|
||||||
u32 lbaSize;
|
u32 lbaSize;
|
||||||
|
|
||||||
u32 psarOffset;
|
u32 psarOffset;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user