Browse Source

Improved internal error reporting.
Now uses "Compile Error" so that MaxIDE can use the passed source location.

woollybah 6 years ago
parent
commit
a9c9df0aaf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config.bmx

+ 1 - 1
config.bmx

@@ -82,7 +82,7 @@ Function InternalErr()
 	If DEBUGSTOP_ON_ERROR Then
 		DebugStop ' useful for debugging!
 	End If
-	Throw "Internal Error.~n" + _errInfo + "~n"
+	Throw "Compile Error. Internal Error : Please report the issue, with an example if possible, to https://github.com/bmx-ng/bcc/issues/new~n" + _errInfo + "~n"
 End Function
 
 Function IsSpace:Int( ch:Int )