Search
lxdream.org :: lxdream :: r1260:8207695d908c
lxdream 0.9.1
released Jun 29
Download Now
changeset1260:8207695d908c
parent1259:8a69f4d0b31d
child1261:644f66135e94
authornkeynes
dateMon Mar 05 17:38:19 2012 +1000 (11 years ago)
Fix direction of #define in previous commit
src/drivers/video_gl.c
1.1 --- a/src/drivers/video_gl.c Mon Mar 05 15:00:14 2012 +1000
1.2 +++ b/src/drivers/video_gl.c Mon Mar 05 17:38:19 2012 +1000
1.3 @@ -181,7 +181,7 @@
1.4 * Use quads if we have them, otherwise tri-fans.
1.5 */
1.6 #ifndef GL_QUADS
1.7 -#define GL_TRIANGLE_FAN GL_QUADS
1.8 +#define GL_QUADS GL_TRIANGLE_FAN
1.9 #endif
1.10
1.11 void gl_texture_window( int width, int height, int tex_id, gboolean inverted )
.