Skip to content

Commit

Permalink
bugfix: uaescsi.device was always enabled by default (#1570)
Browse files Browse the repository at this point in the history
The target default options had "automount_cddrives" enabled, which in turn enabled uaescsi.device always.
However, that should not be enabled in all cases.
  • Loading branch information
midwan committed Jan 7, 2025
1 parent a280b7c commit bb9dd76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osdep/amiberry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2273,7 +2273,7 @@ void target_default_options(uae_prefs* p, const int type)
p->automount_removable = false;
//p->automount_drives = 0;
//p->automount_removabledrives = 0;
p->automount_cddrives = true;
p->automount_cddrives = false;
//p->automount_netdrives = 0;
p->picasso96_modeflags = RGBFF_CLUT | RGBFF_R5G6B5PC | RGBFF_B8G8R8A8;
//p->filesystem_mangle_reserved_names = true;
Expand Down

0 comments on commit bb9dd76

Please sign in to comment.