diff options
Diffstat (limited to 'memdisk/setup.c')
-rw-r--r-- | memdisk/setup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/memdisk/setup.c b/memdisk/setup.c index bad056cf..553c4467 100644 --- a/memdisk/setup.c +++ b/memdisk/setup.c @@ -766,6 +766,9 @@ void setup(syscall_t cs_syscall, void *cs_bounce) pptr->drivecnt = bios_drives; } + /* Add ourselves to the drive count */ + pptr->drivecnt++; + /* Discontiguous drive space. There is no really good solution for this. */ if ( pptr->drivecnt <= (geometry->driveno & 0x7f) ) pptr->drivecnt = (geometry->driveno & 0x7f) + 1; |