d3d8: Avoid shift overflow in render_state_test_data_init.

This commit is contained in:
Gerald Pfeifer 2015-09-07 23:08:41 +02:00 committed by Alexandre Julliard
parent f5e7018dbf
commit 604c2c1da0
1 changed files with 1 additions and 1 deletions

View File

@ -1270,7 +1270,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++] = 1 << 31; /* FOGCOLOR */
data->states[idx++] = 1u << 31; /* FOGCOLOR */
data->states[idx++] = D3DFOG_EXP; /* FOGTABLEMODE */
data->states[idx++] = to_dword(0.1f); /* FOGSTART */
data->states[idx++] = to_dword(0.8f); /* FOGEND */