mirror of
https://github.com/ksherlock/ample.git
synced 2026-04-20 15:16:56 +00:00
typo was preventing floppy mask calculation on systems with only 3.5" floppies. (#28)
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user