d3dx9: Remove an unnecessary initialization (LLVM/Clang).

This commit is contained in:
Matteo Bruni 2011-02-07 20:17:14 +01:00 committed by Alexandre Julliard
parent ed1b396b66
commit 6505aed598
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ HRESULT WINAPI D3DXFilterTexture(LPDIRECT3DBASETEXTURE9 texture,
UINT srclevel,
DWORD filter)
{
UINT level = srclevel + 1;
UINT level;
HRESULT hr;
D3DRESOURCETYPE type;