[gnome-chess] Fix figurine algebraic notation
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-chess] Fix figurine algebraic notation
- Date: Sun, 18 Aug 2013 21:34:34 +0000 (UTC)
commit 4e2ae837aa3de121ff6d7fb71224886dafe22591
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 82c348e..9dc0360 100644
--- a/src/chess-game.vala
+++ b/src/chess-game.vala
@@ -211,8 +211,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]