Changeset 592 in xtideuniversalbios for trunk/Serial_Server/library
- Timestamp:
- Jun 25, 2018, 10:29:27 PM (6 years ago)
- Location:
- trunk/Serial_Server/library
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Serial_Server/library/Checksum.cpp
r589 r592 343 343 } 344 344 345 bbuff[ rand() % 512 ] ^= bit[ rand() % 8];345 bbuff[ rand() & 511 ] ^= bit[ rand() & 7 ]; 346 346 347 347 if( b > 0 ) -
trunk/Serial_Server/library/Image.cpp
r589 r592 131 131 sect = 63; 132 132 } 133 else if( (totallba % 16) != 0 || ((totallba/16) % 63) != 0 )133 else if( (totallba & 15) != 0 || ((totallba/16) % 63) != 0 ) 134 134 { 135 135 log( -1, "'%s', file size does not match standard CHS geometry (x:16:63), please specify geometry explicitly with -g", name );
Note:
See TracChangeset
for help on using the changeset viewer.