|
@@ -158,7 +158,11 @@ class System {
|
|
#if usesys
|
|
#if usesys
|
|
haxe.System.reportError(err + stack);
|
|
haxe.System.reportError(err + stack);
|
|
#else
|
|
#else
|
|
- Sys.println(err + stack);
|
|
|
|
|
|
+ Sys.stderr().writeString(err + stack + "\n");
|
|
|
|
+
|
|
|
|
+ if ( Sys.systemName() != 'Windows' )
|
|
|
|
+ return;
|
|
|
|
+
|
|
if( dismissErrors )
|
|
if( dismissErrors )
|
|
return;
|
|
return;
|
|
|
|
|