remove some intel win10 false positives
This commit is contained in:
parent
503c52fb4d
commit
6c3d9b93ca
1 changed files with 3 additions and 2 deletions
|
@ -108,11 +108,12 @@ fn intel_hd(log: &str) -> Issue {
|
|||
let issue =
|
||||
(
|
||||
"Intel HD Windows 10".to_string(),
|
||||
"Your drivers don't support windows 10 officially
|
||||
"Your drivers don't support Windows 10 officially
|
||||
See https://prismlauncher.org/wiki/getting-started/installing-java/#a-note-about-intel-hd-20003000-on-windows-10 for more info".to_string()
|
||||
);
|
||||
|
||||
let found = log.contains("org.lwjgl.LWJGLException: Pixel format not accelerated");
|
||||
let found = log.contains("org.lwjgl.LWJGLException: Pixel format not accelerated")
|
||||
&& !log.contains("1.8.0_51");
|
||||
found.then_some(issue)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue