v2019.08.17

This commit is contained in:
pypy
2019-08-17 04:19:01 +09:00
parent 095f9c0d59
commit 35e7de03e4

View File

@@ -14,6 +14,8 @@ namespace VRCX
{ {
[STAThread] [STAThread]
public static void Main() public static void Main()
{
try
{ {
var settings = new CefSettings var settings = new CefSettings
{ {
@@ -63,5 +65,11 @@ namespace VRCX
Cef.Shutdown(); Cef.Shutdown();
} }
} }
catch (Exception ex)
{
MessageBox.Show($"{ex.Message}\n{ex.StackTrace}", "PLEASE REPORT TO PYPY", MessageBoxButtons.OK, MessageBoxIcon.Error);
Environment.Exit(0);
}
}
} }
} }