Hello!
When trying to load a GIF image, I get an endless loop of lines starting with "~>" - does anybody know what that means? I guess that these are BlitzMax-internal error messages (or the attempt of an error message, at least)?
I think the ~> is to do with the debugger...not sure
Yep, it's debugger's output prefix.
That problem seems like either :
1) You are running a .debug application outside of a debugging environment (like the IDE) - which, if something causes the app to break (like an exception), expects there to be an actual DEBUGGER ready to catch it and perhaps show you the line that has crashed.
2) You are running the application inside the IDE, but for some reason the Pipe/stream between the application and the debugger is lost, causing it to dump it to the console.
1 is most likely. I often get it when running a .debug app in gdb.
HTH
:o)
Brucey,
thanks for your explanation - indeed, case #1 applies ;-)
approximately greather than? ;-)