summaryrefslogtreecommitdiff
path: root/src/wii
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2011-11-06 00:06:30 +0100
committerTreeki <treeki@gmail.com>2011-11-06 00:06:30 +0100
commit80326413573c5f8ddb55829d510c12dad18043b9 (patch)
treec02ac7aa568417026326374e829f275238a84d48 /src/wii
parent702ef59574bd7d66c99339d80cb78c55a0456c6d (diff)
downloadkoopatlas-80326413573c5f8ddb55829d510c12dad18043b9.tar.gz
koopatlas-80326413573c5f8ddb55829d510c12dad18043b9.zip
WiiArchiveU8.resolvePath now delegates to the root dir
Diffstat (limited to 'src/wii')
-rw-r--r--src/wii/u8archive.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wii/u8archive.py b/src/wii/u8archive.py
index 8295d52..faad114 100644
--- a/src/wii/u8archive.py
+++ b/src/wii/u8archive.py
@@ -186,4 +186,8 @@ class WiiArchiveU8:
size = len(node.data)
handle.write(node.data)
handle.write("\0" * (alignUp(size, 0x20) - size))
+
+
+ def resolvePath(self, *args):
+ return self.root.resolvePath(*args)