Merge pull request #5877 from loops/LinuxLocking

Fix locking problem on Linux port
This commit is contained in:
Jonathan Campbell
2025-10-04 11:13:31 -07:00
committed by GitHub

View File

@@ -2958,6 +2958,7 @@ bool LocalFile::LockFile(uint8_t mode, uint32_t pos, uint16_t size) {
case EINTR:
case ENOLCK:
case EAGAIN:
case EACCES:
DOS_SetError(0x21);
break;
case EBADF: