aboutsummaryrefslogtreecommitdiffstats
path: root/src/screens/UScreenSing.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens/UScreenSing.pas')
-rw-r--r--src/screens/UScreenSing.pas8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/screens/UScreenSing.pas b/src/screens/UScreenSing.pas
index 3b8fda40..221526f8 100644
--- a/src/screens/UScreenSing.pas
+++ b/src/screens/UScreenSing.pas
@@ -343,7 +343,7 @@ begin
StaticPausePopup := AddStatic(Theme.Sing.PausePopUp);
- // <note> pausepopup is not visibile at the beginning </note>
+ // <note> pausepopup is not visible at the beginning </note>
Statics[StaticPausePopup].Visible := false;
Lyrics := TLyricEngine.Create(
@@ -934,8 +934,10 @@ begin
begin
Log.BenchmarkStart(0);
Log.LogVoice(0);
- Log.LogVoice(1);
- Log.LogVoice(2);
+ if (PlayersPlay > 1) then
+ Log.LogVoice(1);
+ if (PlayersPlay > 2) then
+ Log.LogVoice(2);
Log.BenchmarkEnd(0);
Log.LogBenchmark('Creating files', 0);
end;