TextureReplacer: Remove a lock that I don't think should be there. Blacklist another folder.

This commit is contained in:
Henrik Rydgård 2024-11-30 01:30:46 +01:00
parent 7cc59dcda1
commit 821624c494
2 changed files with 1 additions and 1 deletions

View file

@ -2466,6 +2466,7 @@ static u32 sceIoDopen(const char *path) {
"TEXTURES",
"DUMP",
"SHADERS",
"DRIVERS",
};
std::vector<PSPFileInfo> filtered;
for (const auto &entry : dir->listing) {

View file

@ -101,7 +101,6 @@ ReplacedTexture::~ReplacedTexture() {
if (threadWaitable_) {
SetState(ReplacementState::CANCEL_INIT);
std::unique_lock<std::mutex> lock(lock_);
threadWaitable_->WaitAndRelease();
threadWaitable_ = nullptr;
}