Correct the code order

Code of Before and After were placed wrongly.
This commit is contained in:
nomyfan
2020-10-06 00:27:53 +08:00
parent 34de25ef6c
commit 64e48a6755

View File

@@ -52,8 +52,7 @@ From the second example, we'll want to set both GPEN and SBRG to `One` to allow
``` ```
If (_OSI ("Darwin")) If (_OSI ("Darwin"))
{ {
GPEN = One <- Change to the right variables GPEN = One <- Proper variables
SBRG = One <- Change to the right variables
} }
``` ```
@@ -66,7 +65,8 @@ Following the example pathing we found, the SSDT should look something like this
``` ```
If (_OSI ("Darwin")) If (_OSI ("Darwin"))
{ {
GPEN = One <- Proper variables GPEN = One <- Change to the right variables
SBRG = One <- Change to the right variables
} }
``` ```