don't normally show InitDisk while booting

This commit is contained in:
Kenneth J Davis 2023-12-20 17:17:08 -05:00
parent de96d00402
commit db71b1a783
No known key found for this signature in database
GPG Key ID: 59D5F216C38F11FD
1 changed files with 2 additions and 2 deletions

View File

@ -1022,7 +1022,7 @@ int Read1LBASector(struct DriveParamS *driveParam, unsigned drive,
the extended LBA partition type indicator.
*/
if ((driveParam->descflags & DF_LBA) &&
(InitKernelConfig.ForceLBA || ExtLBAForce || chs.Cylinder > 1023))
(InitKernelConfig.ForceLBA || ExtLBAForce || (chs.Cylinder > 1023)))
{
if (InitKernelConfig.Verbose >= 1) printf("LBA mode\n");
dap.number_of_blocks = 1;
@ -1439,7 +1439,7 @@ void ReadAllPartitionTables(void)
/* disk initialization: returns number of units */
COUNT dsk_init()
{
if (InitKernelConfig.Verbose >= 0) printf("\nInitDisk\n");
if (InitKernelConfig.Verbose >= 1) printf("\nInitDisk\n");
#if defined(DEBUG) && !defined(DOSEMU)
{