|
@@ -4510,7 +4510,7 @@ void STM32SAM::AdjustLengths() {
|
|
|
mem56 = flags[index];
|
|
mem56 = flags[index];
|
|
|
|
|
|
|
|
// not a consonant
|
|
// not a consonant
|
|
|
- if((flags[index] & 64) == 0) {
|
|
|
|
|
|
|
+ if((index != 255 && flags[index] & 64) == 0) {
|
|
|
// RX or LX?
|
|
// RX or LX?
|
|
|
if((index == 18) || (index == 19)) // 'RX' & 'LX'
|
|
if((index == 18) || (index == 19)) // 'RX' & 'LX'
|
|
|
{
|
|
{
|
|
@@ -5700,4 +5700,4 @@ inline void STM32SAM::SetAUDIO(unsigned char main_volume) {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
LL_TIM_OC_SetCompareCH1(FURI_HAL_SPEAKER_TIMER, data);
|
|
LL_TIM_OC_SetCompareCH1(FURI_HAL_SPEAKER_TIMER, data);
|
|
|
-}
|
|
|
|
|
|
|
+}
|