WiiMart-Patcher/patch_ec_cfg_path.go
Spotlight e17dbf9ce1
Migrate instruction encoding to external library
The PowerPC instruction encoder and patching logic is now available at https://github.com/wii-tools/powerpc.
2022-04-10 23:20:37 -05:00

18 lines
258 B
Go

package main
import (
. "github.com/wii-tools/powerpc"
)
var PatchECCfgPath = PatchSet{
Name: "Change EC Configuration Path",
Patches: []Patch{
{
AtOffset: 3319968,
Before: []byte("ec.cfg\x00\x00"),
After: []byte("osc.cfg\x00"),
},
},
}