[four-in-a-row] Fix typo.



commit a8f4d96959bc0bc1e7cd24f614e5eeed15528e8b
Author: Arnaud Bonatti <arnaud bonatti gmail com>
Date:   Fri Jan 10 17:59:55 2020 +0100

    Fix typo.

 src/four-in-a-row.vala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/four-in-a-row.vala b/src/four-in-a-row.vala
index d6e8e8f..5f702e2 100644
--- a/src/four-in-a-row.vala
+++ b/src/four-in-a-row.vala
@@ -435,7 +435,7 @@ private class FourInARow : Gtk.Application
             switch_players ();
 
         winner = NOBODY;
-        column = (/* BOARD_COLUMNS */ size % 2 == 0 && get_locale_direction () == TextDirection.RTL) ? /* 
BOARD_COLUMNS */ (uint8) size / 2 - 1
+        column = (/* BOARD_COLUMNS */ size % 2 == 0 && get_locale_direction () == TextDirection.LTR) ? /* 
BOARD_COLUMNS */ (uint8) size / 2 - 1
                                                                                                      : /* 
BOARD_COLUMNS */ (uint8) size / 2;
         column_moveto = column;
         row = 0;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]