1
0
Fork 0

Undo goto:label code. breaks drive switching. Maybe change drive shouldn't be handled in shell:execute

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3774
This commit is contained in:
Peter Veenstra 2012-01-03 17:57:15 +00:00
parent 353ced54c2
commit 4907599222

View file

@ -127,7 +127,7 @@ void DOS_Shell::DoCommand(char * line) {
if (*line == '/') break;
if (*line == '\t') break;
if (*line == '=') break;
if (*line == ':') break;
// if (*line == ':') break; //This breaks drive switching as that is handled at a later stage.
if ((*line == '.') ||(*line == '\\')) { //allow stuff like cd.. and dir.exe cd\kees
*cmd_write=0;
Bit32u cmd_index=0;