Skip to content

Commit 3362d14

Browse files
committed
Fix book path name for linux
1 parent ae5e75e commit 3362d14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python_easy_chess_gui.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262

6363
APP_NAME = 'Python Easy Chess GUI'
64-
APP_VERSION = 'v1.9'
64+
APP_VERSION = 'v1.10'
6565
BOX_TITLE = '{} {}'.format(APP_NAME, APP_VERSION)
6666

6767

@@ -3552,9 +3552,9 @@ def main():
35523552
engine_config_file = 'pecg_engines.json'
35533553
user_config_file = 'pecg_user.json'
35543554

3555-
pecg_book = 'book/pecg_book.bin'
3556-
book_from_computer_games = 'book/computer.bin'
3557-
book_from_human_games = 'book/human.bin'
3555+
pecg_book = 'Book/pecg_book.bin'
3556+
book_from_computer_games = 'Book/computer.bin'
3557+
book_from_human_games = 'Book/human.bin'
35583558

35593559
is_use_gui_book = True
35603560
is_random_book = True # If false then use best book move

0 commit comments

Comments
 (0)