Skip to content

Commit

Permalink
typo was preventing floppy mask calculation on systems with only 3.5"…
Browse files Browse the repository at this point in the history
… floppies. (#28)
  • Loading branch information
ksherlock committed Mar 22, 2024
1 parent c2323ac commit 0afa433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ample/Media.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void MediaAdd(Media *dest, const Media *src) {

//unsigned count;
unsigned dest_flops = dest->floppy_8 + dest->floppy_5_25 + dest->floppy_3_5;
unsigned src_flops = src->floppy_8 || src->floppy_5_25 || src->floppy_8;
unsigned src_flops = src->floppy_8 || src->floppy_5_25 || src->floppy_3_5;


#define _(name) dest->name += src->name;
Expand Down

0 comments on commit 0afa433

Please sign in to comment.