MemMap: Fix inverted condition

This commit is contained in:
Stenzek 2024-08-05 13:08:42 +10:00
parent 2fb5e4495d
commit e499f9052a
No known key found for this signature in database

View file

@ -644,7 +644,7 @@ void* MemMap::CreateSharedMemory(const char* name, size_t size, Error* error)
}
// we're not going to be opening this mapping in other processes, so remove the file
if (!is_anonymous)
if (is_anonymous)
shm_unlink(name);
#endif