소스 검색

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

Kolja Strohm 6 달 전
부모
커밋
0a09159375
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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: