fix: CLang fix

This commit is contained in:
Akatsuki Levi 2024-03-15 21:03:47 -03:00
parent c33ccfaa71
commit 94a84f5943
No known key found for this signature in database
GPG key ID: BB4057BB9E0F1C7A
95 changed files with 261 additions and 259 deletions

View file

@ -18,8 +18,8 @@ namespace Tegra {
CDmaPusher::CDmaPusher(Host1x::Host1x& host1x_, s32 id)
: host1x{host1x_}, memory_manager{host1x.GMMU()},
host_processor{std::make_unique<Host1x::Control>(host1x_)}, current_class{
static_cast<ChClassId>(id)} {
host_processor{std::make_unique<Host1x::Control>(host1x_)},
current_class{static_cast<ChClassId>(id)} {
thread = std::jthread([this](std::stop_token stop_token) { ProcessEntries(stop_token); });
}