aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2016-01-01 23:13:45 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2016-01-01 23:13:45 +0000
commit36f0dc6162b71352df7c86f397814966653af806 (patch)
treee9950f46bad20c8aceb8e37432fa4cec8d578c02
parent9156ce62f34de5c80d5103d874e20f231f22a054 (diff)
downloadusdx-36f0dc6162b71352df7c86f397814966653af806.tar.gz
usdx-36f0dc6162b71352df7c86f397814966653af806.tar.xz
usdx-36f0dc6162b71352df7c86f397814966653af806.zip
add commented stuff
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@3164 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--src/base/ULyrics.pas11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/base/ULyrics.pas b/src/base/ULyrics.pas
index 4b2bc4ae..5ecb2ea8 100644
--- a/src/base/ULyrics.pas
+++ b/src/base/ULyrics.pas
@@ -116,8 +116,15 @@ type
LineColor_en: TRGBA; // Color of words in an enabled line
LineColor_dis: TRGBA; // Color of words in a disabled line
LineColor_act: TRGBA; // Color of the active word
+
+ {
+ LineOColor_en: TRGBA; // Color of outline words in an enabled line
+ LineOColor_dis: TRGBA; // Color of outline words in a disabled line
+ LineOColor_act: TRGBA; // Color of outline the active word
+ }
+
FontStyle: byte; // Font for the lyric text
-
+
{ // currently not used
FadeInEffect: byte; // Effect for line fading in: 0: No Effect; 1: Fade Effect; 2: Move Upwards from Bottom to Pos
FadeOutEffect: byte; // Effect for line fading out: 0: No Effect; 1: Fade Effect; 2: Move Upwards
@@ -487,7 +494,7 @@ begin
// italic font to avoid overlapping.
// - if two italic words follow each other use the normal style's
// width otherwise the spacing between the words will be too big.
- // - if it is the line's last word use normal width
+ // - if it is the line's last word use normal width
if CurWord.Freestyle and
(I+1 < Length(LyricLine.Words)) and
(not LyricLine.Words[I+1].Freestyle) then