[*] oops i didnt just break the build

This commit is contained in:
Reece Wilson 2023-10-23 11:53:39 +01:00
parent dfe6b468ec
commit 4b38f205d1
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ namespace Aurora::IO::Net
eServiceRefused,
eServiceTaken,
eBrokenAIOPipe,
eBrokenByteBuffer
eBrokenByteBuffer,
eUnknown
));
}

View File

@ -197,7 +197,7 @@ namespace Aurora::Memory
if (!this->base)
{
return Allocate(length, false);
return Allocate(length);
}
auto uOldHead = this->readPtr - this->base;

View File

@ -203,7 +203,7 @@ namespace Aurora::IO
return;
}
if (!this->buffer_.Allocate(this->uBufferSize_, AuHwInfo::GetPageSize(), true))
if (!this->buffer_.Allocate(this->uBufferSize_, AuHwInfo::GetPageSize()))
{
SysPushErrorMem();
TerminateOnThread(true);