Plib is willing callbacks to return 0, 1 or 2 and not simply a boolean

This commit is contained in:
ehofman
2004-04-02 19:48:50 +00:00
parent 6e0e056ca7
commit 14033946e5

View File

@@ -43,7 +43,7 @@ model_filter = true;
static int
model_filter_callback (ssgEntity * entity, int mask)
{
return model_filter;
return model_filter ? 1 : 0;
}
/**