diff options
Diffstat (limited to 'unicode')
-rw-r--r-- | unicode/src/base/UMusic.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unicode/src/base/UMusic.pas b/unicode/src/base/UMusic.pas index 792d5e3f..70e8d63c 100644 --- a/unicode/src/base/UMusic.pas +++ b/unicode/src/base/UMusic.pas @@ -51,7 +51,7 @@ type Start: integer; // beat the fragment starts at Length: integer; // length in beats Tone: integer; // full range tone - Text: string; // text assigned to this fragment (a syllable, word, etc.) + Text: UTF8String; // text assigned to this fragment (a syllable, word, etc.) NoteType: TNoteType; // note-type: golden-note/freestyle etc. end; @@ -62,7 +62,7 @@ type PLine = ^TLine; TLine = record Start: integer; // the start beat of this line (<> start beat of the first note of this line) - Lyric: string; + Lyric: UTF8String; LyricWidth: real; // @deprecated: width of the line in pixels. // Do not use this as the width is not correct. // Use TLyricsEngine.GetUpperLine().Width instead. |