From 8dfe7088fd7102f3b180868b92c53ab3680e37f0 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 13 Apr 2018 17:06:58 +0200 Subject: [PATCH] [dxvk] Fixed silly typo --- src/dxvk/dxvk_image.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dxvk/dxvk_image.cpp b/src/dxvk/dxvk_image.cpp index 4f51d7b10..3f9937dc8 100644 --- a/src/dxvk/dxvk_image.cpp +++ b/src/dxvk/dxvk_image.cpp @@ -33,8 +33,8 @@ namespace dxvk { "\n Type: ", info.imageType, "\n Format: ", info.format, "\n Extent: ", "(", info.extent.width, - ",", info.extent.width, - ",", info.extent.width, ")", + ",", info.extent.height, + ",", info.extent.depth, ")", "\n Mip levels: ", info.mipLevels, "\n Array layers: ", info.arrayLayers, "\n Samples: ", info.samples,