MemMap: Fix inverted condition

pull/3273/head
Stenzek 1 year ago
parent 2fb5e4495d
commit e499f9052a
No known key found for this signature in database

@ -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

Loading…
Cancel
Save