Initial commit
This commit is contained in:
17
pywii/pywii-tools/tikfix.py
Executable file
17
pywii/pywii-tools/tikfix.py
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import sys, os, os.path
|
||||
import pywii as wii
|
||||
|
||||
wii.loadkeys()
|
||||
|
||||
tikfile = sys.argv[1]
|
||||
print "fixing Tik file %s " % tikfile
|
||||
tik = wii.WiiTik(open(tikfile, "rb").read())
|
||||
tik.null_signature()
|
||||
tik.brute_sha()
|
||||
tik.update()
|
||||
f = open(tikfile,"wb")
|
||||
f.write(tik.data)
|
||||
f.close()
|
||||
|
||||
Reference in New Issue
Block a user