diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-12-28 10:38:21 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-12-28 10:38:21 +0000 |
commit | d60b876f8d9dd1e8bc322cf2ddd20d86a01080b2 (patch) | |
tree | 44b7f17b95c83d20d54f2d01b6eb89fa0da395b1 /src | |
parent | f55efca1666a399d986b0f08fec218baeec02710 (diff) | |
download | usdx-d60b876f8d9dd1e8bc322cf2ddd20d86a01080b2.tar.gz usdx-d60b876f8d9dd1e8bc322cf2ddd20d86a01080b2.tar.xz usdx-d60b876f8d9dd1e8bc322cf2ddd20d86a01080b2.zip |
log active players only
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2779 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/UScreenSing.pas | 8 |
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; |