# HG changeset patch # User peter1138 # Date 1202378478 0 # Node ID 6daa6c45197c849fdfe4b48a035790d78910d1b4 # Parent eab268d8974a9110e06fbf9856f0f08b23878a36 (svn r12079) -Fix: Use search paths when opening console scripts. diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -810,7 +810,7 @@ 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 @@ IConsoleError("Encountered errror while trying to read from script file"); _script_running = false; - fclose(_script_file); + FioFCloseFile(_script_file); return true; }