From 14574b92cbe76320d2864c043b48675446436396 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 19 Apr 2021 19:51:17 -0400 Subject: Draw foundations in reverse order --- bin/freecell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/freecell.c b/bin/freecell.c index 7c0f9ee6..fbc0fe22 100644 --- a/bin/freecell.c +++ b/bin/freecell.c @@ -284,7 +284,7 @@ static void draw(void) { char key; if (i < Cell) { y = FoundationY; - x = FoundationX + (i-Foundation) * (CardWidth+Padding); + x = FoundationX + (3-(i-Foundation)) * (CardWidth+Padding); key = '_'; } else if (i < Tableau) { y = CellY; -- cgit 1.4.1