sp_context.c:255: error: 'false' undeclared (first use in this function)

This commit is contained in:
Oliver McFadden 2007-10-18 14:45:32 +00:00
parent 17c2f56dc3
commit 7cd58433fa

View file

@ -252,7 +252,7 @@ struct pipe_context *softpipe_create( struct pipe_winsys *pipe_winsys,
#if defined(__i386__) || defined(__386__)
softpipe->use_sse = getenv("GALLIUM_SSE") != NULL;
#else
softpipe->use_sse = false;
softpipe->use_sse = FALSE;
#endif
softpipe->pipe.winsys = pipe_winsys;