mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
store last thrown exception in FormatCatalog.LastError.
This commit is contained in:
parent
2a7520939d
commit
2593f9ffc3
@ -155,7 +155,10 @@ namespace GameRes
|
||||
if (null != sound)
|
||||
return sound;
|
||||
}
|
||||
catch { }
|
||||
catch (System.Exception X)
|
||||
{
|
||||
FormatCatalog.Instance.LastError = X;
|
||||
}
|
||||
}
|
||||
if (0 == signature)
|
||||
break;
|
||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion ("1.0.1.4")]
|
||||
[assembly: AssemblyFileVersion ("1.0.1.4")]
|
||||
[assembly: AssemblyVersion ("1.0.1.5")]
|
||||
[assembly: AssemblyFileVersion ("1.0.1.5")]
|
||||
|
Loading…
Reference in New Issue
Block a user