Commit 3eb91fbc authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: Parse ARM CPU level.

parent 8a8a7005
......@@ -990,11 +990,12 @@ void fill_cpu_info(void)
continue;
}
/* 2.1 method */
if (!strcasecmp(line, "cpu family"))
/* 2.1 and ARM method */
if (!strcasecmp(line, "cpu family") || !strcasecmp(line, "CPU architecture"))
{
if (isdigit(value[0]))
{
value[1] = '\0'; /* Make sure we only get one character */
cached_sci.Level = atoi(value);
}
continue;
......
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