WIN: Fix another potentially uninitialized variable

This commit is contained in:
darkstar
2018-02-22 00:34:39 +01:00
parent f0b191fa8d
commit 2e70f7b112

View File

@@ -180,7 +180,7 @@ d3d_blit_fs(int x, int y, int y1, int y2, int w, int h)
{
HRESULT hr = D3D_OK;
HRESULT hbsr = D3D_OK;
VOID* pVoid;
VOID* pVoid = 0;
D3DLOCKED_RECT dr;
RECT w_rect;
int yy;