Ignore blz.exe exit code. Fixes #9.

This commit is contained in:
Prof. 9
2014-05-25 14:24:59 +02:00
parent 560ac0e3bb
commit 8d6675d6e7
2 changed files with 7 additions and 4 deletions

View File

@@ -335,10 +335,6 @@ namespace WfcReplay
psi.WindowStyle = ProcessWindowStyle.Hidden;
Process blz = Process.Start(psi);
blz.WaitForExit();
if (blz.ExitCode != 0)
{
throw new Exception("BLZ decompression failed.");
}
file = readTempFile(fileName);
}

View File

@@ -2,6 +2,13 @@ Changelog
=========
WfcReplay v0.4.1 - 25 May 2014
------------------------------
Fixes an issue introduced in the previous version when using games with uncompressed ARM9 binaries or overlays.
* Fixed "BLZ decompression failed" error when ARM9 binary or overlay is not compressed.
WfcReplay v0.4 - 25 May 2014
----------------------------
This release contains various bugfixes for a number of games, such as Zelda: Phantom Hourglass and Planet Puzzle League. It also corrects some other issues. Antipiracy-protected games remain unsupported.