Compare commits

...

1 Commits

Author SHA1 Message Date
Caleb Cornett ad5de7874c Remove isFixed param from AcquireCommandBuffer call 2023-01-13 20:35:04 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ namespace MoonWorks.Graphics
public CommandBuffer AcquireCommandBuffer()
{
return new CommandBuffer(this, Refresh.Refresh_AcquireCommandBuffer(Handle, 0));
return new CommandBuffer(this, Refresh.Refresh_AcquireCommandBuffer(Handle));
}
public unsafe void Submit(CommandBuffer commandBuffer)