Commit 971a1e66 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

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

parent f3a031f2
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment