misc.py: Set f16c argument

This commit is contained in:
Mykola Grymalyuk
2023-04-03 13:51:00 -06:00
parent 0f95d6a1bb
commit c0825ed24e
2 changed files with 6 additions and 0 deletions

View File

@@ -11,6 +11,8 @@
- Resolve unused KDKs not being properly cleaned up
- Implement MXM graphics handling for iMac9,1
- 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
- Backend changes:
- Use `.AppleSystemUIFont` for wxPython text rendering (thanks [jazzzny](https://github.com/Jazzzny))

View File

@@ -100,6 +100,10 @@ class BuildMiscellaneous:
logging.info("- Fixing Content Caching support")
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(","):
patch_args = patch_args[:-1]