Changeset 225 in xtideuniversalbios for trunk/Serial_Server/win32/Win32.cpp


Ignore:
Timestamp:
Jan 27, 2012, 6:19:21 PM (12 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Serial Server, minor improvements to file handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Serial_Server/win32/Win32.cpp

    r219 r225  
    2626        "",
    2727        "  -g [cyl:head:sect]  Geometry in cylinders, sectors per cylinder, and heads",
    28         "                      -g without parameters uses CHS mode (default is LBA28)",
     28        "                      -g also implies CHS addressing mode (default is LBA28)",
    2929        "",
    3030        "  -n [megabytes]      Create new disk with given size or use -g geometry",
     
    161161        else if( imagecount < 2 )
    162162        {
     163            if( createFile && cyl == 0 )
     164            {
     165                cyl = 65;
     166                sect = 63;
     167                head = 16;
     168            }
    163169            images[imagecount] = new FlatImage( argv[t], readOnly, imagecount, createFile, cyl, head, sect, useCHS );
    164170            imagecount++;
Note: See TracChangeset for help on using the changeset viewer.