Procházet zdrojové kódy

fix problems with formatted texts so that they do not have to contain 0 byte anymore

Kolja Strohm před 6 měsíci
rodič
revize
0a09159375
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      TextFeld.cpp

+ 1 - 1
TextFeld.cpp

@@ -613,7 +613,7 @@ void TextFeld::setFormattedText(const char* txt)
             tm->textStyle.add(current);
             break;
         case 6:
-            current.rendererIndex = (unsigned char)txt[++i];
+            current.rendererIndex = (unsigned char)(txt[++i] - 1);
             tm->textStyle.add(current);
             break;
         case 7: