Skip to content

Commit

Permalink
when not in dance mode revert to chart defined 'meter'
Browse files Browse the repository at this point in the history
i meant to do this a long time ago; not strenuously tested
  • Loading branch information
MinaciousGrace committed Jul 17, 2018
1 parent 646c439 commit 7197a03
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,14 @@ t[#t+1] = LoadFont("Common Large") .. {
end,
SetCommand=function(self)
if song then
if GAMESTATE:GetCurrentStyle():ColumnsPerPlayer() == 4 then
local meter = steps:GetMSD(getCurRateValue(), 1)
self:settextf("%05.2f",meter)
self:diffuse(byMSD(meter))
else
self:settextf("%5.2f",steps:GetMeter())
self:diffuse(byDifficulty(steps:GetDifficulty()))
end
else
self:settext("")
end
Expand Down

0 comments on commit 7197a03

Please sign in to comment.