From 639c69f44a959e0b4faa98064ae993b5069eefb5 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sat, 4 Jan 2025 13:11:32 +0100 Subject: [PATCH] vkd3d: Fix tab indent. Signed-off-by: Philip Rebohle --- libs/vkd3d/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/vkd3d/memory.c b/libs/vkd3d/memory.c index 1b80d750c7..17fac6997c 100644 --- a/libs/vkd3d/memory.c +++ b/libs/vkd3d/memory.c @@ -998,7 +998,7 @@ HRESULT vkd3d_allocate_device_memory(struct d3d12_device *device, * E.g. there exists no memory type that is not DEVICE_LOCAL and covers both RT and DS. * For this case, we have no choice but to not allocate, * and defer actual memory allocation to CreatePlacedResource() time. - * NVIDIA bug reference for fixing this case: 2175829. */ + * NVIDIA bug reference for fixing this case: 2175829. */ WARN("Memory allocation failed, but it is not possible to fallback to system memory here. Deferring allocation.\n"); return hr; }