Im making hp bar atm using "window" command. Thats how it looks:

Code:
var altitude = 0; 

PANEL* first_pan =
{
  layer=1;
window (0, 55, 64, 64, "hp.tga", 0, altitude);
flags = SHOW;
}

PANEL* hh =
{
 bmap = "Dc_02Lion.tga";
 flags= SHOW;
 layer=2;
}

PANEL* srodek =
{
	bmap="srodek.tga";
	pos_x=7;
	pos_y=57;
	flags=SHOW;
	layer=0;
}



Height.tga is health image, Dc_02Lion.tga is a kind of frame over it and srodek.tga is the background. The code looks ok and everythings is ok as long as im using height.pcx instead of hp.tga (i mean the example from workshop). If i place hp.tga at there and changing dx and dy for it, the altitude var stops reacting for its change. I change it for 20, -20, 50, 0, and hp.tga bitmap is still at the same place. What am i doing wrong? Why height.pcx works and my image doesnt? (i tried hp.pcx too)