diff --git a/packages/addons/depends/audio/libopenmpt/patches/libopenmpt-bug-769.patch b/packages/addons/depends/audio/libopenmpt/patches/libopenmpt-bug-769.patch deleted file mode 100644 index c8db0644d5..0000000000 --- a/packages/addons/depends/audio/libopenmpt/patches/libopenmpt-bug-769.patch +++ /dev/null @@ -1,14 +0,0 @@ -Index: soundlib/tuning.cpp -=================================================================== ---- a/soundlib/tuning.cpp (revision 6294) -+++ b/soundlib/tuning.cpp (working copy) -@@ -375,7 +375,8 @@ - if(!IsOfType(TT_GROUPGEOMETRIC)) return 0; - - if(note >= 0) return note % GetGroupSize(); -- else return (GetGroupSize() - (abs(note) % GetGroupSize())) % GetGroupSize(); -+ // static_cast(note) because g++-6 template-disables std::abs overloads for 8bit and 16bit integer types via std::enable_if. -+ else return (GetGroupSize() - (std::abs(static_cast(note)) % GetGroupSize())) % GetGroupSize(); - } - -