function this_works()
{
if( something )
{
TBlit( 0, 0, _imLeftActive, screen );
}
}
function this_also_works()
{
if( something )
{
TBlit(
0,
0,
_imLeftActive,
screen );
}
}
function this_totally_doesnt_work()
{
if( something )
{
TBlit(
0,
0,
_imLeftActive,
screen
);
}
}