mirror of
https://github.com/microsoft/DirectXTex.git
synced 2026-02-05 04:36:13 +01:00
Retire Windows 8.1 Store, Windows phone 8.1. and VS 2013 projects (#96)
* Retire VS 2013 projects * Cleaned up warning suppression * Use ``noexcept`` instead of ``throw()`` * Can use ``%zu`` instead of ``%Iu`` * More uniform initialization
This commit is contained in:
@@ -138,7 +138,7 @@ int WINAPI wWinMain( _In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
|
||||
if ( mdata.arraySize > 1 )
|
||||
{
|
||||
wchar_t buff[2048] = {};
|
||||
swprintf_s( buff, L"Arrays of volume textures are not supported\n\nFilename = %ls\nArray size %Iu", lpCmdLine, mdata.arraySize );
|
||||
swprintf_s( buff, L"Arrays of volume textures are not supported\n\nFilename = %ls\nArray size %zu", lpCmdLine, mdata.arraySize );
|
||||
MessageBox( nullptr, buff, L"DDSView", MB_OK | MB_ICONEXCLAMATION );
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user