mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-21 22:50:51 +10:00
misc.py: Set f16c argument
This commit is contained in:
@@ -11,6 +11,8 @@
|
|||||||
- Resolve unused KDKs not being properly cleaned up
|
- Resolve unused KDKs not being properly cleaned up
|
||||||
- Implement MXM graphics handling for iMac9,1
|
- Implement MXM graphics handling for iMac9,1
|
||||||
- Credit to [Ausdauersportler](https://github.com/Ausdauersportler) for implementation
|
- Credit to [Ausdauersportler](https://github.com/Ausdauersportler) for implementation
|
||||||
|
- Resolve CoreGraphics.framework crashing on Ivy Bridge CPUs in macOS 13.3+
|
||||||
|
- Disables f16c sysctl reporting
|
||||||
- Resolve accidental CPU renaming with RestrictEvents
|
- Resolve accidental CPU renaming with RestrictEvents
|
||||||
- Backend changes:
|
- Backend changes:
|
||||||
- Use `.AppleSystemUIFont` for wxPython text rendering (thanks [jazzzny](https://github.com/Jazzzny))
|
- Use `.AppleSystemUIFont` for wxPython text rendering (thanks [jazzzny](https://github.com/Jazzzny))
|
||||||
|
|||||||
@@ -100,6 +100,10 @@ class BuildMiscellaneous:
|
|||||||
logging.info("- Fixing Content Caching support")
|
logging.info("- Fixing Content Caching support")
|
||||||
patch_args += "asset,"
|
patch_args += "asset,"
|
||||||
|
|
||||||
|
if smbios_data.smbios_dictionary[self.model]["CPU Generation"] == cpu_data.cpu_data.ivy_bridge.value:
|
||||||
|
logging.info("- Fixing CoreGraphics support on Ivy Bridge")
|
||||||
|
patch_args += "f16c,"
|
||||||
|
|
||||||
if patch_args.endswith(","):
|
if patch_args.endswith(","):
|
||||||
patch_args = patch_args[:-1]
|
patch_args = patch_args[:-1]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user