[Tux4kids-commits] r1558 - tuxtype/trunk/src
David Bruce
dbruce-guest at alioth.debian.org
Wed Sep 30 11:08:09 UTC 2009
Author: dbruce-guest
Date: 2009-09-30 11:08:09 +0000 (Wed, 30 Sep 2009)
New Revision: 1558
Modified:
tuxtype/trunk/src/titlescreen.c
Log:
fix of arrow position in word selection screen
Modified: tuxtype/trunk/src/titlescreen.c
===================================================================
--- tuxtype/trunk/src/titlescreen.c 2009-09-30 11:08:01 UTC (rev 1557)
+++ tuxtype/trunk/src/titlescreen.c 2009-09-30 11:08:09 UTC (rev 1558)
@@ -1327,10 +1327,12 @@
leftRect.w = left->w;
leftRect.h = left->h;
leftRect.x = screen->w/2 - 80 - (leftRect.w/2);
- leftRect.y = screen->h/2 - 50;
+ leftRect.y = screen->h - 50;
- rightRect.w = right->w; rightRect.h = right->h;
- rightRect.x = screen->w/2 + 80 - (rightRect.w/2); rightRect.y = screen->h/2 - 50;
+ rightRect.w = right->w;
+ rightRect.h = right->h;
+ rightRect.x = screen->w/2 + 80 - (rightRect.w/2);
+ rightRect.y = screen->h - 50;
/* set initial rect sizes */
titleRects[0].y = 30;
More information about the Tux4kids-commits
mailing list