Simplify.

This commit is contained in:
Steve Checkoway
2007-05-05 23:21:58 +00:00
parent fba31da4e6
commit a341d98591
@@ -8,7 +8,7 @@ for _, s in ipairs(Stage) do
SetCommand=function(self, params) SetCommand=function(self, params)
self:visible( params.StageToShow == s ); self:visible( params.StageToShow == s );
if params.StageNumber then if params.StageNumber then
self:settext( string.format("%i", params.StageNumber+1) ); self:settext( tostring(params.StageNumber+1) );
end end
end; end;
} }