From e5016cb22e8a498017d297fa017ee3b21fa5357e Mon Sep 17 00:00:00 2001 From: Bogomil Vasilev Date: Tue, 16 Dec 2014 22:25:30 +0200 Subject: [PATCH] Indentation... --- chess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chess.cpp b/chess.cpp index def3a25..2a74ab2 100644 --- a/chess.cpp +++ b/chess.cpp @@ -683,8 +683,8 @@ int chess::path_status(int a_x, int a_y, int b_x, int b_y) int chess::castling(int choice) { king *King[2] = { - static_cast(this->King[0]), - static_cast(this->King[1]) + static_cast(this->King[0]), + static_cast(this->King[1]) }; if (King[turn]->can_castle(choice) == false)