I think, I'm too stupid =D
If I use "total_secs" in my own var and want to show it in a panel:
var seconds = total_secs;
PANEL* zeit_pan =
{
layer = 2;
pos_x = 50;
red = 0; green = 0; blue = 0;
digits = 0,0," %5.0f",fnt_score, 1, seconds;
flags = SHOW;
}
it doesn't work - but if I use "total_secs" directly in the panel, it works fine...
and I also don't want to just show the seconds (because it isn't really nice to see that you have played 326 seconds since the game started), I want to show minutes : seconds.
need some help here...=D