diff options
author | Pixel <pixel@nobis-crew.org> | 2013-06-23 20:01:57 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2013-06-23 20:01:57 -0700 |
commit | 804886ec07e47a83d22b2471db15f8045e342d18 (patch) | |
tree | fd4f8c054d10ab9a5701e63c5344cecd78a87c27 /VP-miscwork.lua | |
parent | cc1cd492e7bdc6ea25647f49cc59ebc9edecc637 (diff) |
Let's avoid stopping the process for puny reasons.
Diffstat (limited to 'VP-miscwork.lua')
-rw-r--r-- | VP-miscwork.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/VP-miscwork.lua b/VP-miscwork.lua index 2fec7b9..e19d23e 100644 --- a/VP-miscwork.lua +++ b/VP-miscwork.lua @@ -200,9 +200,11 @@ function process_carc(fname, h, size, ext) counter = counter + 1 end elseif not dump_mode and index[i].extra == 2 then - error "Not written yet" + -- error "Not written yet" + handler = nil elseif not dump_mode and index[i].extra == 1 then - error "Not written yet" + -- error "Not written yet" + handler = nil end local fsize = index[i + 1].offset - index[i].offset outfile[i] = process_single_file(fname .. string.format("/%04i-%08X", i, index[i].extra), h, fsize, ext, handler) |