d3d8/tests: Avoid a shift overflow in render_state_test_data_init.

This commit is contained in:
Andrew Nguyen 2011-05-31 05:56:11 -05:00 committed by Alexandre Julliard
parent be17277bb7
commit eef74e5e4b
1 changed files with 1 additions and 1 deletions

View File

@ -1346,7 +1346,7 @@ static void render_state_test_data_init(struct render_state_data *data)
data->states[idx++] = TRUE; /* ALPHABLENDENABLE */
data->states[idx++] = TRUE; /* FOGENABLE */
data->states[idx++] = TRUE; /* SPECULARENABLE */
data->states[idx++] = 255 << 31; /* FOGCOLOR */
data->states[idx++] = 1 << 31; /* FOGCOLOR */
data->states[idx++] = D3DFOG_EXP; /* FOGTABLEMODE */
data->states[idx++] = to_dword(0.1f); /* FOGSTART */
data->states[idx++] = to_dword(0.8f); /* FOGEND */