wined3d: Fix the TIMESTAMP_DISJOINT query.

Spotted by Patrick Rudolph.
This commit is contained in:
Matteo Bruni 2015-05-04 23:16:15 +02:00 committed by Alexandre Julliard
parent 0cc7daebd8
commit 4b35cf730f
1 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,7 @@ static HRESULT wined3d_timestamp_disjoint_query_ops_get_data(struct wined3d_quer
if (query->type == WINED3D_QUERY_TYPE_TIMESTAMP_DISJOINT)
{
static const struct wined3d_query_data_timestamp_disjoint disjoint_data = {FALSE, 1000 * 1000 * 1000};
static const struct wined3d_query_data_timestamp_disjoint disjoint_data = {1000 * 1000 * 1000, FALSE};
if (query->state == QUERY_BUILDING)
{