From d26052c7df0e3ae640f45d72068e3112c2c21477 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Mon, 2 May 2005 21:56:01 +0000 Subject: (svn r2254) - Fix: using 'ls' or 'dir' in the console always shows loadable savegames and does not depend on the whim of the currently open saveload dialog --- console_cmds.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/console_cmds.c b/console_cmds.c index 3fd533a22..d4fe3001a 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -223,10 +223,11 @@ DEF_CONSOLE_CMD(ConListFiles) int i; if (argc == 0) { - IConsoleHelp("List all the files in the current dir via console. Usage: 'ls \\ dir'"); + IConsoleHelp("List all loadable savegames and directories in the current dir via console. Usage: 'ls \\ dir'"); return true; } + _saveload_mode = SLD_LOAD_GAME; BuildFileList(); for (i = 0; i < _fios_num; i++) { -- cgit v1.2.3-54-g00ecf