Code: Select all
DisableDebugger ; Invalid memory access
Procedure test()
Repeat
Read.s a$
ForEver
EndProcedure
test()
Code: Select all
DisableDebugger ; Invalid memory access
Procedure test()
Repeat
Read.s a$
ForEver
EndProcedure
test()
No it can't because you disabled the debugger which is tracking these kinds of things. That is why it shows the last line when the debugger was still on.BarryG wrote: Sat May 03, 2025 11:00 amMaybe this report can be for the actual error line to be highlighted, then.
Ahhh... so that's why that happens! Thanks for explaining.freak wrote: Sat May 03, 2025 11:35 amThat is why it shows the last line when the debugger was still on