From 54285f35c9d0425a2e67e81ba67d9391ad598103 Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Sat, 8 Nov 2025 21:14:59 -0800 Subject: =?UTF-8?q?audio/dexed:=20update=200.9.7=20=E2=86=92=200.9.8.17?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audio/dexed/files/patch-Source_PluginData.cpp | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 audio/dexed/files/patch-Source_PluginData.cpp (limited to 'audio/dexed/files/patch-Source_PluginData.cpp') diff --git a/audio/dexed/files/patch-Source_PluginData.cpp b/audio/dexed/files/patch-Source_PluginData.cpp deleted file mode 100644 index 978d97954d32..000000000000 --- a/audio/dexed/files/patch-Source_PluginData.cpp +++ /dev/null @@ -1,26 +0,0 @@ -- from Bug 265342 - audio/dexed: fix build on armv7 arm64 - ---- Source/PluginData.cpp.orig 2022-07-20 04:30:35 UTC -+++ Source/PluginData.cpp -@@ -103,18 +103,14 @@ void Cartridge::packProgram(uint8_t *src, int idx, Str - * This function normalize data that comes from corrupted sysex. - * It used to avoid engine crashing upon extreme values - */ --char normparm(char value, char max, int id) { -- if ( value <= max && value >= 0 ) -+uint8_t normparm(uint8_t value, uint8_t max, int id) { -+ if ( value <= max ) - return value; - - // if this is beyond the max, we expect a 0-255 range, normalize this - // to the expected return value; and this value as a random data. - -- value = abs(value); -- -- char v = ((float)value)/255 * max; -- -- return v; -+ return ((float)value)/255 * max; - } - - void Cartridge::unpackProgram(uint8_t *unpackPgm, int idx) { -- cgit v1.2.3