1
0
mirror of https://github.com/microsoft/DirectXTex synced 2024-11-08 05:50:05 +00:00

Remove noisy useless warning (#470)

This commit is contained in:
Chuck Walbourn 2024-04-19 21:24:03 -05:00 committed by GitHub
parent 237525e71c
commit 976ec533be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -128,18 +128,6 @@ namespace
auto xboxext = reinterpret_cast<const DDS_HEADER_XBOX*>(
reinterpret_cast<const uint8_t*>(pSource) + sizeof(uint32_t) + sizeof(DDS_HEADER));
#ifdef _GXDK_VER
if (xboxext->xdkVer < _GXDK_VER)
{
OutputDebugStringA("WARNING: DDS XBOX file may be outdated and need regeneration\n");
}
#elif defined(_XDK_VER)
if (xboxext->xdkVer < _XDK_VER)
{
OutputDebugStringA("WARNING: DDS XBOX file may be outdated and need regeneration\n");
}
#endif
metadata.arraySize = xboxext->arraySize;
if (metadata.arraySize == 0)
{