diff --git a/src/patch/register.rs b/src/patch/register.rs index 1f2711b2..cd03b4f6 100644 --- a/src/patch/register.rs +++ b/src/patch/register.rs @@ -239,6 +239,9 @@ impl RegisterExt for Register { } // For all other tags, just set the value ftag.modify_from(make_field(fmod)?, VAL_LVL)?; + if let Some("") = fmod.get_str("access")? { + ftag.access = None; + } } Ok(()) }