Hey-ho ...

And another small problem

I got a panel with an background image for a custom console. This background image is in pcx-format. I have to set the OVERLAY flag on. When the alpha value becomes lower than 50 (TRANSCULENT-flag is set) the panel becomes invisible.

The same problem with my crosshair panel.

Code:
PANEL* pConsole = {
bmap = bConsole;
layer = 1;
flags = TRANSLUCENT;
alpha = 30;
}

...

pConsole.pos_x = 1;
pConsole.pos_y = 1;
set(pConsole,OVERLAY); // The evil line
set(pConsole,VISIBLE);



What's the problem??

Thanks in advance