use suffixes for stage numbers instead of leaving them as just numbers

This commit is contained in:
AJ Kelly
2007-10-05 00:51:01 +00:00
parent 9665623071
commit 009c42b9f2
@@ -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( tostring(params.StageNumber+1) ); self:settext( FormatNumberAndSuffix(params.StageNumber+1) );
end end
end; end;
} }