new HowToPlay

This commit is contained in:
Chris Danford
2008-11-24 06:50:00 +00:00
parent bd2fff8af5
commit 4243bbd16b
24 changed files with 59 additions and 108 deletions
@@ -8,13 +8,10 @@ t[#t+1] = LoadFont("Common", "normal") .. {
SetCommand=function(self)
local s = "";
local text = ProductVersion() .. " " .. VersionTime();
s = s .. "\n" .. text;
local fmt = THEME:GetString( Var "LoadingScreen", "%d songs in %d groups" );
local text = string.format( fmt, SONGMAN:GetNumSongs(), SONGMAN:GetNumSongGroups() )
s = s .. "\n" .. text;
s = s .. text;
local fmt = THEME:GetString( Var "LoadingScreen", "%d courses in %d groups" );
local text = string.format( fmt, SONGMAN:GetNumCourses(), SONGMAN:GetNumCourseGroups() )