From 1b5f8df8b1ccf03cc45bc9f61bee57f458ba1a11 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Thu, 7 Feb 2008 10:01:18 +0000 Subject: (svn r12079) -Fix: Use search paths when opening console scripts. --- src/console_cmds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index fda8d5422..c18d2f6df 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -810,7 +810,7 @@ DEF_CONSOLE_CMD(ConExec) if (argc < 2) return false; - _script_file = fopen(argv[1], "r"); + _script_file = FioFOpenFile(argv[1], "r", BASE_DIR); if (_script_file == NULL) { if (argc == 2 || atoi(argv[2]) != 0) IConsoleError("script file not found"); @@ -834,7 +834,7 @@ DEF_CONSOLE_CMD(ConExec) IConsoleError("Encountered errror while trying to read from script file"); _script_running = false; - fclose(_script_file); + FioFCloseFile(_script_file); return true; } -- cgit v1.2.3-70-g09d2