jump calls can crash the MTS engine

Issue #6 resolved
mezzodrinker created an issue

The following code example will crash the engine:

function Foo()

jump Bar;

end

label Start

Foo();

end

label Bar

end

It crashes because the engine has to terminate after executing the label Bar which is called by jump from inside a function. The same would happen if you try to use jump in a label called by the command

call Label;

Comments (2)

  1. Log in to comment