mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-07 22:50:44 +00:00
Do not exit immediately when debugging, to give a chance to examine the output.
This commit is contained in:
parent
f8cd5879b1
commit
31b80891e2
|
@ -186,6 +186,11 @@ namespace Bind
|
||||||
Console.WriteLine();
|
Console.WriteLine();
|
||||||
Console.WriteLine("Bindings generated in {0} seconds.", ticks / (double)10000000.0);
|
Console.WriteLine("Bindings generated in {0} seconds.", ticks / (double)10000000.0);
|
||||||
Console.WriteLine();
|
Console.WriteLine();
|
||||||
|
if (Debugger.IsAttached)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Press any key to continue...");
|
||||||
|
Console.ReadKey(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (SecurityException e)
|
catch (SecurityException e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue