Commit 9cbd33b6 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

wined3d: Fix wined3d_get_wine_vk_version().

parent fb4116ee
......@@ -454,7 +454,9 @@ static unsigned int wined3d_get_wine_vk_version(void)
major = atoi(ptr);
while (isdigit(*ptr) || *ptr == '.')
while (isdigit(*ptr))
++ptr;
if (*ptr == '.')
++ptr;
minor = atoi(ptr);
......
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