I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 4c172760 authored by dev's avatar dev
Browse files

Corrected some identification code.

parent 7330e5fe
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,7 @@ public class CPUID {
return true;
} else if (getCPUExtendedModel() == 1 && (getCPUFamily() == 6 && (getCPUModel() == 10 || getCPUModel() == 13))){
return true;
} else if (getCPUExtendedModel() == 1 && getCPUFamily() == 6 && getCPUModel() == 10){
} else if (getCPUExtendedModel() == 0 && getCPUFamily() == 6 && getCPUModel() == 15){
return true;
} else {
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment