Skip to content

Commit

Permalink
wrong bit values
Browse files Browse the repository at this point in the history
  • Loading branch information
rpatters1 committed Dec 3, 2024
1 parent 05f2410 commit aa37a43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/document_options_to_musescore.lua
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ function muse_font_efx(font_info)
retval = retval | 0x02
end
if font_info.Underline then
retval = retval | 0x03
retval = retval | 0x04
end
if font_info.Strikethrough then
retval = retval | 0x04
retval = retval | 0x08
end
return retval
end
Expand Down

0 comments on commit aa37a43

Please sign in to comment.