Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MarathonRecomp/gpu/video.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3515,7 +3515,7 @@ static GuestTexture* CreateTexture(uint32_t width, uint32_t height, uint32_t dep

static RenderHeapType GetBufferHeapType()
{
return g_capabilities.gpuUploadHeap ? RenderHeapType::GPU_UPLOAD : RenderHeapType::DEFAULT;
return g_capabilities.gpuUploadHeap && !g_capabilities.uma ? RenderHeapType::GPU_UPLOAD : RenderHeapType::UPLOAD;
}

static GuestBuffer* CreateVertexBuffer(uint32_t length)
Expand Down
Loading