Don't show protiming, song title on demo.

This commit is contained in:
Jonathan Payne
2012-01-06 23:52:21 -08:00
parent b7751c0e5c
commit 02bfabae6e
2 changed files with 9 additions and 2 deletions
@@ -1,6 +1,13 @@
local c;
local player = Var "Player";
local bShowProtiming = GetUserPrefB("UserPrefProtiming" .. ToEnumShortString(player) );
local function ShowProtiming()
if GAMESTATE:IsDemonstration() then
return false
else
return GetUserPrefB("UserPrefProtiming" .. ToEnumShortString(player));
end
end;
local bShowProtiming = ShowProtiming();
local function MakeAverage( t )
local sum = 0;