[NTVDM]: temporary fix for "lastdrive": put it to 'Z' (max drive letter you can have on DOS). A better fix would be DOS listing all the accessible drives in the current PC and compute the last one.

svn path=/trunk/; revision=67616
This commit is contained in:
Hermès Bélusca-Maïto
2015-05-10 10:28:33 +00:00
parent 8ddf736b58
commit 32bc389748
@@ -39,7 +39,7 @@
CALLBACK16 DosContext;
/*static*/ BYTE CurrentDrive;
static CHAR LastDrive = 'E';
static CHAR LastDrive = 'Z'; // The last drive can be redefined with the LASTDRIVE command. At the moment, set the real maximum possible, 'Z'.
static CHAR CurrentDirectories[NUM_DRIVES][DOS_DIR_LENGTH];
static PBYTE InDos;