when loading script23.c that is mentioned in the tutorial. I get the programmers robot walking.
I wanted to change the background color to red.
I placed "screen_color.red = 150;" line in the space below.
When I run the script it still shows up blue. What am I doing wrong? I am not changing anything else is scipt just adding that line.
(I have same problem when loading a level.)

function main()
{
video_mode = 7;
screen_color.red = 150;
level_load ("");
wait(2);
ent_create("robot.mdl", vector(400, 0, -50), rotate_bone);
mouse_map = crosshair_pcx;
mouse_mode = 2;
{
vec_set(mouse_pos, mouse_cursor);
wait (1);
}