Nope works fine for me, what is the image size?
this is what i just tried and it works
///////////////////////////////////////////////////////////
#include <acknex.h>
#include <default.c>
BMAP* NoAlpha ="blackgril.bmp";
PANEL* TestPanel =
{
bmap = NoAlpha;
pos_x = 0;
pos_y = 0;
layer = 1;
flags = OVERLAY | VISIBLE;
}
function Config()
{
// set the mouse mode to 2
mouse_mode = 2;
video_mode = 7; // Set Res to 800x600
screen_color.blue = 150; // make background blue
}
function main()
{
var number;
Config();
}