sync with master (2/2)

This commit is contained in:
lizzie
2026-06-28 05:43:58 +00:00
parent bb66fbea51
commit 44f6229b26
3 changed files with 7 additions and 5 deletions
+3 -2
View File
@@ -21,8 +21,9 @@ namespace Tegra::Engines {
using namespace Texture;
MaxwellDMA::MaxwellDMA(Core::System& system_, MemoryManager& memory_manager_)
: system{system_}, memory_manager{memory_manager_} {
MaxwellDMA::MaxwellDMA(MemoryManager& memory_manager_)
: memory_manager{memory_manager_}
{
execution_mask.fill(0);
execution_mask[offsetof(Regs, launch_dma) / sizeof(u32)] = true;
}