d3d9/tests: Avoid a shift overflow in render_state_test_data_init.

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

View File

@ -1462,7 +1462,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 */