it works perfectly for me. here is the code i got:
Code:
////////////////////////////////////////////////////////////////////
BMAP first_pcx = "first.pcx"; // my first bmap
PANEL first_pan = // my first panel
{
    pos_x = 0;
    pos_y = 0;
    layer = 1;
    bmap = first_pcx;
    flags = OVERLAY | SHOW;
}
/////////////////////////////////////////////////////////////////////
function main()
{
  screen_size.x = 800;
  screen_size.y = 600;
  screen_color.blue = 150;
}



and it works fine

Last edited by mikaldinho; 03/13/10 17:44.