]> git.jsancho.org Git - lugaru.git/commitdiff
oops, last commit fixed the wrong thing
authorsf17k <sf171k@gmail.com>
Fri, 3 Jun 2011 22:44:35 +0000 (18:44 -0400)
committersf17k <sf171k@gmail.com>
Fri, 3 Jun 2011 22:44:35 +0000 (18:44 -0400)
Source/Menu.cpp

index 20038734b8a15bda65231022f535935f74ba60f2..f6a1957527611a0e4cfc17bfa95163567c73072f 100644 (file)
@@ -144,7 +144,7 @@ void Menu::drawItems(){
             glPushMatrix();
             if(it->type==MenuItem::MAPMARKER){
                 glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
-                glTranslatef(2,-5,0); //from old code
+                glTranslatef(2.5,-4.5,0); //from old code
             }else{
                 glBlendFunc(GL_SRC_ALPHA,GL_ONE);
             }
@@ -202,12 +202,12 @@ void Menu::drawItems(){
             break;
         case MenuItem::MAPLINE: {
             XYZ linestart;
-            linestart.x=it->x-0.5;
-            linestart.y=it->y-0.5;
+            linestart.x=it->x;
+            linestart.y=it->y;
             linestart.z=0;
             XYZ lineend;
-            lineend.x=it->x+it->w-0.5;
-            lineend.y=it->y+it->h-0.5;
+            lineend.x=it->x+it->w;
+            lineend.y=it->y+it->h;
             lineend.z=0;
             XYZ offset=lineend-linestart;
             XYZ fac=offset;