Skip to content

Commit 4890861

Browse files
committed
use forward slashes to load thor files
1 parent 9c9a865 commit 4890861

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

zebra.c

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -832,30 +832,30 @@ play_game( const char *file_name,
832832
/* No error checking done as it's only for testing purposes */
833833

834834
database_start = get_real_timer();
835-
(void) read_player_database( "thor\\wthor.jou");
836-
(void) read_tournament_database( "thor\\wthor.trn" );
837-
(void) read_game_database( "thor\\wth_2001.wtb" );
838-
(void) read_game_database( "thor\\wth_2000.wtb" );
839-
(void) read_game_database( "thor\\wth_1999.wtb" );
840-
(void) read_game_database( "thor\\wth_1998.wtb" );
841-
(void) read_game_database( "thor\\wth_1997.wtb" );
842-
(void) read_game_database( "thor\\wth_1996.wtb" );
843-
(void) read_game_database( "thor\\wth_1995.wtb" );
844-
(void) read_game_database( "thor\\wth_1994.wtb" );
845-
(void) read_game_database( "thor\\wth_1993.wtb" );
846-
(void) read_game_database( "thor\\wth_1992.wtb" );
847-
(void) read_game_database( "thor\\wth_1991.wtb" );
848-
(void) read_game_database( "thor\\wth_1990.wtb" );
849-
(void) read_game_database( "thor\\wth_1989.wtb" );
850-
(void) read_game_database( "thor\\wth_1988.wtb" );
851-
(void) read_game_database( "thor\\wth_1987.wtb" );
852-
(void) read_game_database( "thor\\wth_1986.wtb" );
853-
(void) read_game_database( "thor\\wth_1985.wtb" );
854-
(void) read_game_database( "thor\\wth_1984.wtb" );
855-
(void) read_game_database( "thor\\wth_1983.wtb" );
856-
(void) read_game_database( "thor\\wth_1982.wtb" );
857-
(void) read_game_database( "thor\\wth_1981.wtb" );
858-
(void) read_game_database( "thor\\wth_1980.wtb" );
835+
(void) read_player_database( "thor/wthor.jou");
836+
(void) read_tournament_database( "thor/wthor.trn" );
837+
(void) read_game_database( "thor/wth_2001.wtb" );
838+
(void) read_game_database( "thor/wth_2000.wtb" );
839+
(void) read_game_database( "thor/wth_1999.wtb" );
840+
(void) read_game_database( "thor/wth_1998.wtb" );
841+
(void) read_game_database( "thor/wth_1997.wtb" );
842+
(void) read_game_database( "thor/wth_1996.wtb" );
843+
(void) read_game_database( "thor/wth_1995.wtb" );
844+
(void) read_game_database( "thor/wth_1994.wtb" );
845+
(void) read_game_database( "thor/wth_1993.wtb" );
846+
(void) read_game_database( "thor/wth_1992.wtb" );
847+
(void) read_game_database( "thor/wth_1991.wtb" );
848+
(void) read_game_database( "thor/wth_1990.wtb" );
849+
(void) read_game_database( "thor/wth_1989.wtb" );
850+
(void) read_game_database( "thor/wth_1988.wtb" );
851+
(void) read_game_database( "thor/wth_1987.wtb" );
852+
(void) read_game_database( "thor/wth_1986.wtb" );
853+
(void) read_game_database( "thor/wth_1985.wtb" );
854+
(void) read_game_database( "thor/wth_1984.wtb" );
855+
(void) read_game_database( "thor/wth_1983.wtb" );
856+
(void) read_game_database( "thor/wth_1982.wtb" );
857+
(void) read_game_database( "thor/wth_1981.wtb" );
858+
(void) read_game_database( "thor/wth_1980.wtb" );
859859
database_stop = get_real_timer();
860860
#if FULL_ANALYSIS
861861
frequency_analysis( get_total_game_count() );

0 commit comments

Comments
 (0)