d3d9: Fix type of loop variable in stream_test() and texop_test().

This commit is contained in:
Gerald Pfeifer 2008-07-18 17:17:26 +02:00 committed by Alexandre Julliard
parent f3a031f248
commit 971a1e66f4

View file

@ -8723,7 +8723,7 @@ static void stream_test(IDirect3DDevice9 *device)
BYTE *data;
DWORD color;
DWORD ind;
int i;
unsigned i;
const DWORD shader_code[] =
{
@ -9065,7 +9065,7 @@ static void texop_test(IDirect3DDevice9 *device)
D3DCOLOR color;
D3DCAPS9 caps;
HRESULT hr;
int i;
unsigned i;
static const struct {
float x, y, z;