revision 1260:8207695d908c
summary |
tree |
shortlog |
changelog |
graph |
changeset |
raw | bz2 | zip | gz changeset | 1260:8207695d908c |
parent | 1259:8a69f4d0b31d |
child | 1261:644f66135e94 |
author | nkeynes |
date | Mon Mar 05 17:38:19 2012 +1000 (11 years ago) |
Fix direction of #define in previous commit
1.1 --- a/src/drivers/video_gl.c Mon Mar 05 15:00:14 2012 +10001.2 +++ b/src/drivers/video_gl.c Mon Mar 05 17:38:19 2012 +10001.3 @@ -181,7 +181,7 @@1.4 * Use quads if we have them, otherwise tri-fans.1.5 */1.6 #ifndef GL_QUADS1.7 -#define GL_TRIANGLE_FAN GL_QUADS1.8 +#define GL_QUADS GL_TRIANGLE_FAN1.9 #endif1.11 void gl_texture_window( int width, int height, int tex_id, gboolean inverted )
.