Skip to content

Commit 85e1517

Browse files
committed
Updated known plugins list
1 parent 85c9943 commit 85e1517

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

KnownPlugins.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ Please note that improperly written immature plugins will not be listed there.
88
- [CoreDisplayFixup](https://github.com/PMheart/CoreDisplayFixup) - Non Iris Intel graphics high resolution support
99
- [HibernationFixup](https://sourceforge.net/projects/hibernationfixup) - Enable 3 & 25 mode hibernation on certain hardware
1010
- [IntelGraphicsFixup](https://sourceforge.net/p/intelgraphicsfixup) - Various patches necessary for certain Intel GPUs
11+
- [IntelGraphicsDVMTFixup](https://github.com/BarbaraPalvin/IntelGraphicsDVMTFixup) - Patches for DVMT problem on Broadwell/Skylake Intel Graphics
1112
- [NvidiaGraphicsFixup](https://sourceforge.net/p/nvidiagraphicsfixup) - Various patches necessary for certain NVIDIA GPUs
1213
- [Shiki](https://github.com/vit9696/Shiki) - Dynamic userspace patcher for macOS

Lilu/Sources/kern_mach.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ kern_return_t MachInfo::init(const char * const paths[], size_t num) {
5353
vfs_context_t ctxt = nullptr;
5454
bool found = false;
5555

56-
for(size_t i = 0; i < num; i++) {
56+
for (size_t i = 0; i < num; i++) {
5757
vnode = NULLVP;
5858
ctxt = vfs_context_create(nullptr);
5959

6060
errno_t err = vnode_lookup(paths[i], 0, &vnode, ctxt);
61-
if(!err) {
61+
if (!err) {
6262
kern_return_t readError = readMachHeader(machHeader, vnode, ctxt);
63-
if(readError == KERN_SUCCESS) {
64-
if(isKernel && !isCurrentKernel(machHeader)) {
63+
if (readError == KERN_SUCCESS) {
64+
if (isKernel && !isCurrentKernel(machHeader)) {
6565
vnode_put(vnode);
6666
} else {
6767
DBGLOG("mach @ Found executable at path: %s", paths[i]);

0 commit comments

Comments
 (0)