1
0
Fork 0

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:49:51 +00:00
parent ace81503d6
commit 7902c04905

View file

@ -521,5 +521,5 @@ bool FGTileMgr::set_tile_filter( bool f ) {
int FGTileMgr::tile_filter_cb( ssgEntity *, int )
{
return tile_filter;
return tile_filter ? 1 : 0;
}