Diese paar Zeilen geben bei mir 2 aus (es sollte 3 sein, wenn PROC_LATE funktioniert)!

Code:

var test_var;

PANEL* test_pan =
{
red = 0;
green = 0;
blue = 0;
digits(0,0,1.0,"Arial#500",1,test_var);

flags = VISIBLE,LIGHT;
}

void test_late()
{
proc_mode = PROC_LATE;
wait(1);
test_var = 3;
}

void test_early()
{
proc_mode = PROC_EARLY;
wait(1);
test_var = 1;
}

void test_normal()
{
wait(1);
test_var = 2;
}

void main()
{
test_late();
test_normal();
test_early();

vec_set(screen_color,vector(0,0,255));
}