So, I making the move to liteC, and I cant
seem to accomplish what should be a simple task.

As I'm sure most of you do, I use panels with digits for debugging,
but the panel display appears to be drawing the back buffer to
the current screen buffer. I thought setting the REFRESH flag
in the panel would take care of that, but it doesn't.

Here the script in case I've missed something.

Code:
  
FONT* gFont= "ackfont.pcx";

int testVar = 0;

PANEL* outputPanel =
{
layer = 1;

digits(10,10,3,gFont,1,testVar);

flags = REFRESH | VISIBLE;
}





In a while(1){ wait(1); } loop
I am incrementing testVar by 1.


I just love startin all over