WinRT: suppressed an unused param warning when building for Windows Phone 8.1

This commit is contained in:
David Ludwig 2014-04-30 21:12:47 -04:00
parent c5c1a2c65a
commit ec5f6ad595
1 changed files with 2 additions and 1 deletions

View File

@ -2899,6 +2899,8 @@ D3D11_RenderPresent(SDL_Renderer * renderer)
HRESULT result; HRESULT result;
DXGI_PRESENT_PARAMETERS parameters; DXGI_PRESENT_PARAMETERS parameters;
SDL_zero(parameters);
#if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP #if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
syncInterval = 1; syncInterval = 1;
presentFlags = 0; presentFlags = 0;
@ -2916,7 +2918,6 @@ D3D11_RenderPresent(SDL_Renderer * renderer)
* rects to improve efficiency in certain scenarios. * rects to improve efficiency in certain scenarios.
* This option is not available on Windows Phone 8, to note. * This option is not available on Windows Phone 8, to note.
*/ */
SDL_zero(parameters);
result = IDXGISwapChain1_Present1(data->swapChain, syncInterval, presentFlags, &parameters); result = IDXGISwapChain1_Present1(data->swapChain, syncInterval, presentFlags, &parameters);
#endif #endif