Skip to content

Commit

Permalink
Added Arrow Lake CPU detection
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed Nov 9, 2024
1 parent 15b65bd commit 403562b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
WhateverGreen Changelog
=======================
#### v1.6.9
- Added Arrow Lake CPU detection

#### v1.6.8
- Fixed loading on macOS 10.10 and older due to a MacKernelSDK regression

Expand Down
6 changes: 3 additions & 3 deletions WhateverGreen.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@
MODULE_NAME = as.vit9696.WhateverGreen;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
MODULE_VERSION = 1.6.8;
MODULE_VERSION = 1.6.9;
OTHER_CFLAGS = (
"-mmmx",
"-msse",
Expand Down Expand Up @@ -700,7 +700,7 @@
MODULE_NAME = as.vit9696.WhateverGreen;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
MODULE_VERSION = 1.6.8;
MODULE_VERSION = 1.6.9;
OTHER_CFLAGS = (
"-mmmx",
"-msse",
Expand Down Expand Up @@ -839,7 +839,7 @@
MODULE_NAME = as.vit9696.WhateverGreen;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
MODULE_VERSION = 1.6.8;
MODULE_VERSION = 1.6.9;
OTHER_CFLAGS = (
"-mmmx",
"-msse",
Expand Down
1 change: 1 addition & 0 deletions WhateverGreen/kern_igfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ void IGFX::init() {
modBlackScreenFix.available = true;
break;
case CPUInfo::CpuGeneration::RocketLake:
case CPUInfo::CpuGeneration::ArrowLake:
gPlatformGraphicsSupported = false;
break;
default:
Expand Down

0 comments on commit 403562b

Please sign in to comment.