From aca947df12b5debc77e9e04a25f1eebd8e2b43a2 Mon Sep 17 00:00:00 2001 From: HugoPeters1024 Date: Fri, 13 Jan 2023 10:03:45 +0100 Subject: [PATCH] examples: Fix error description in texture example (#696) fix error description in texture example --- examples/src/bin/texture.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/src/bin/texture.rs b/examples/src/bin/texture.rs index 497ff31..34039bf 100644 --- a/examples/src/bin/texture.rs +++ b/examples/src/bin/texture.rs @@ -280,7 +280,7 @@ fn main() { &base.device_memory_properties, vk::MemoryPropertyFlags::HOST_VISIBLE | vk::MemoryPropertyFlags::HOST_COHERENT, ) - .expect("Unable to find suitable memorytype for the vertex buffer."); + .expect("Unable to find suitable memorytype for the image buffer."); let image_buffer_allocate_info = vk::MemoryAllocateInfo { allocation_size: image_buffer_memory_req.size,