From 5060d172e77ded7225652c63bb530ec6730f3d66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Thu, 31 Jul 2025 10:13:58 -0700 Subject: [PATCH] Updated error message. --- tools/texturec/texturec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/texturec/texturec.cpp b/tools/texturec/texturec.cpp index daa227b..95c9583 100644 --- a/tools/texturec/texturec.cpp +++ b/tools/texturec/texturec.cpp @@ -189,7 +189,7 @@ bimg::ImageContainer* convert(bx::AllocatorI* _allocator, const void* _inputData { bimg::imageFree(input); - BX_ERROR_SET(_err, TEXTRUREC_ERROR, "Input image format is not equirectangular projection."); + BX_ERROR_SET(_err, TEXTRUREC_ERROR, "Input image format is not equirectangular projection (expected aspect ratio is 2:1)."); return NULL; } }