AviWriter.cs: be informative if worker thread dies

This commit is contained in:
goyuken 2012-05-09 01:00:16 +00:00
parent d70a4e0a9c
commit d0ada9dbb3
1 changed files with 2 additions and 1 deletions

View File

@ -77,8 +77,9 @@ namespace BizHawk.MultiClient
return; return;
} }
} }
catch (Exception) catch (Exception e)
{ {
System.Windows.Forms.MessageBox.Show("AVIFIL32 Thread died:\n\n" + e.ToString());
return; return;
} }
} }