From 9e7b93b55b714b73085805cab0ceef0ea082231c Mon Sep 17 00:00:00 2001
From: Philip Rebohle <philip.rebohle@tu-dortmund.de>
Date: Fri, 15 Jul 2022 19:32:03 +0200
Subject: [PATCH] [dxvk] Fix infinite recursion caused by rebase derp

---
 src/dxvk/dxvk_format.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dxvk/dxvk_format.h b/src/dxvk/dxvk_format.h
index 383df60c6..5697ee9a3 100644
--- a/src/dxvk/dxvk_format.h
+++ b/src/dxvk/dxvk_format.h
@@ -78,7 +78,7 @@ namespace dxvk {
     if (likely(format <= VK_FORMAT_BC7_SRGB_BLOCK))
       return &g_formatInfos[uint32_t(format)];
     else
-      return lookupFormatInfo(format);
+      return lookupFormatInfoSlow(format);
   }
 
 }
\ No newline at end of file