[gnome-chess/gnome-3-8] Fix figurine algebraic notation



commit 8a7a079ce6275839952c2e3e659ab0b7e43e1f90
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Sun Aug 18 16:33:57 2013 -0500

    Fix figurine algebraic notation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=706264

 src/chess-game.vala |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/chess-game.vala b/src/chess-game.vala
index 6fe1010..567caed 100644
--- a/src/chess-game.vala
+++ b/src/chess-game.vala
@@ -201,8 +201,8 @@ public class ChessMove
 
     public string get_fan ()
     {
-        const string white_piece_names[] = {"", "♞", "♝", "♜", "♛", "♚"};
-        const string black_piece_names[] = {"", "♘", "♗", "♖", "♕", "♔"};
+        const string white_piece_names[] = {"", "♜", "♞", "♝", "♛", "♚"};
+        const string black_piece_names[] = {"", "♖", "♘", "♗", "♕", "♔"};
         if (piece.color == Color.WHITE)
             return make_san ((string[]) white_piece_names);
         else


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