[*] Linux regression before ConsoleTTYs

This commit is contained in:
Reece Wilson 2022-05-13 01:43:54 +01:00
parent 2a09e62add
commit 8fb1542d03
2 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@
Author: Reece
***/
#include <Source/RuntimeInternal.hpp>
#include "Console.hpp"
#include "../Console.hpp"
#include "ConsoleTTY.Unix.hpp"
#include "ColorConvert.hpp"
#include "../ColorConvert.hpp"
#include <Source/Console/ConsoleStd/ConsoleStd.hpp>
namespace Aurora::Console

View File

@ -318,12 +318,12 @@ namespace Aurora::Processes
AuSPtr<AuIO::IAsyncTransaction> ProcessImpl::NewAsyncTransaction()
{
return this->fsStream_ ? this->fsStream_->NewTransaction() : AuSPtr<AuIOFS::IAsyncTransaction> {};
return this->fsStream_ ? this->fsStream_->NewTransaction() : AuSPtr<AuIO::IAsyncTransaction> {};
}
AuSPtr<AuIO::IAsyncTransaction> ProcessImpl::NewErrorStreamAsyncTransaction()
{
return this->fsErrorStream_ ? this->fsErrorStream_->NewTransaction() : AuSPtr<AuIOFS::IAsyncTransaction> {};
return this->fsErrorStream_ ? this->fsErrorStream_->NewTransaction() : AuSPtr<AuIO::IAsyncTransaction> {};
}
bool ProcessImpl::Start()