diff src/gl-render.cc @ 10835:4bbd6f75f173

gl-render.cc: Transpose markers '^' and 'v'.
author Ben Abbott <bpabbott@mac.com>
date Thu, 29 Jul 2010 20:02:36 -0400
parents 9f2bf537a651
children f56255a2b890
line wrap: on
line diff
--- a/src/gl-render.cc	Thu Jul 29 19:44:07 2010 -0400
+++ b/src/gl-render.cc	Thu Jul 29 20:02:36 2010 -0400
@@ -3125,14 +3125,14 @@
       glVertex2d (-sz/2, 0);
       glEnd();
       break;
-    case '^':
+    case 'v':
       glBegin ((filled ? GL_POLYGON : GL_LINE_LOOP));
       glVertex2f (0, sz/2);
       glVertex2f (sz/2, -sz/2);
       glVertex2f (-sz/2, -sz/2);
       glEnd ();
       break;
-    case 'v':
+    case '^':
       glBegin ((filled ? GL_POLYGON : GL_LINE_LOOP));
       glVertex2f (0, -sz/2);
       glVertex2f (-sz/2, sz/2);