1
0
Fork 0

cd.. now works and doesn't brake hwset.com anymore

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@108
This commit is contained in:
Peter Veenstra 2002-07-31 12:26:04 +00:00
parent 913513179e
commit 438ad2b437

View file

@ -53,7 +53,7 @@ void DOS_Shell::DoCommand(char * line) {
while (*line) {
if (*line==32) break;
if (*line=='/') break;
if (*line=='.') break;
if ((*line=='.') && (*(line+1)=='.')) break;
*cmd_write++=*line++;
}
*cmd_write=0;