r7275 Friday 5th February, 2010 at 15:45:34 UTC by Wilbert Pol
Fixed some 'uninitialized variable' errors. [Scott Michel]
[docs]messnew.txt
[src/mess/formats]d64_dsk.c
[src/mess/machine]wd17xx.c

src/mess/machine/wd17xx.c
r7274r7275
421421{
422422   switch (density)
423423   {
424      case DEN_FM_LO:  return 128; break;
425      case DEN_FM_HI:    return  64; break;
424      case DEN_FM_LO:  return 128;
425      case DEN_FM_HI:    return  64;
426426      default:
427      case DEN_MFM_LO: return  32; break;
428      case DEN_MFM_HI: return  16; break;
427      case DEN_MFM_LO: return  32;
428      case DEN_MFM_HI: return  16;
429429   }
430   return 32;
430431}
431432
432433
src/mess/formats/d64_dsk.c
r7274r7275
562562
563563FLOPPY_IDENTIFY( d71_dsk_identify )
564564{
565   int heads = 0, tracks = 0, dos;
565   int heads = 0, tracks = 0, dos = -1;
566566   bool has_errors = false;
567567
568568   *vote = 0;
docs/messnew.txt
r7274r7275
8989
9090- Cleanups for driver_data and Standard C library usage.  [Atari Ace]
9191
92- Fixed some 'uninitialized variable' errors.  [Scott Michel]
93
9294- Placed floppy drive head initially on track 0 to fix alignment issues
9395  with Commodore drives, where physical track 1 is a half track. [Curt Coder]
9496

Previous 509076 RevisionsNext 50


© 1998-2010 The MESS Team