diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-01-12 16:34:33 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-01-12 16:34:33 +0000 |
commit | 78511fe948f403cd43181c5f19db25e272cb46b5 (patch) | |
tree | fb519504120a440a00bf01c728eb550444807b51 /unicode/src | |
parent | e060f08b82d45510f202c59cd92877cac67729aa (diff) | |
download | usdx-78511fe948f403cd43181c5f19db25e272cb46b5.tar.gz usdx-78511fe948f403cd43181c5f19db25e272cb46b5.tar.xz usdx-78511fe948f403cd43181c5f19db25e272cb46b5.zip |
changed type of TLineFragment.Text and TLine.Lyric from String to UTF8String (just for clarity)
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1561 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'unicode/src')
-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. |