fix: Clang fix part 2: Electric bogaloo

This commit is contained in:
Akatsuki Levi 2024-03-15 21:05:43 -03:00
parent 94a84f5943
commit 70d0df5e55
No known key found for this signature in database
GPG key ID: BB4057BB9E0F1C7A
93 changed files with 253 additions and 254 deletions

View file

@ -9,8 +9,8 @@
namespace Tegra::Host1x {
Host1x::Host1x(Core::System& system_)
: system{system_}, syncpoint_manager{}, memory_manager(system.DeviceMemory()),
gmmu_manager{system, memory_manager, 32, 0, 12},
: system{system_}, syncpoint_manager{},
memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 0, 12},
allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {}
Host1x::~Host1x() = default;