From 90a5b5d117214c68330a4d2b958b626234081e71 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sun, 8 Jun 2025 18:48:12 +0200 Subject: [PATCH] Fix typo --- src/core/render/resources/texture/loader.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/render/resources/texture/loader.rs b/src/core/render/resources/texture/loader.rs index 81acdc4..8d26862 100644 --- a/src/core/render/resources/texture/loader.rs +++ b/src/core/render/resources/texture/loader.rs @@ -53,14 +53,14 @@ impl TextureLoader { .as_ref() .map(|queue| { tracing::trace!( - "Selected transfer queue for texture loading with family index: {:?}", + "Select transfer queue for texture loading with family index: {:?}", queue.queue_family_index() ); queue.clone() }) .or_else(|| { tracing::trace!( - "Selected graphics queue for texture loading with family index: {:?}", + "Select graphics queue for texture loading with family index: {:?}", app_context.graphics_queue.queue_family_index() ); Some(app_context.graphics_queue.clone())