Skip to content

Commit

Permalink
Fix find-replace error
Browse files Browse the repository at this point in the history
This function doesn't exist. Now it points to one that does. This error broke eval screen offset plots for custom windows.
  • Loading branch information
poco0317 authored Sep 4, 2018
1 parent 392d814 commit b404c6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Themes/Til Death/BGAnimations/offsetplot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ o[#o+1] = Def.ActorMultiVertex{
local x = fitX(wuab[i])
local y = fitY(dvt[i])
local fit = (enabledCustomWindows and judge ~= 0) and customWindow.judgeWindows.boo + 3 or math.max(183, 183*tso)
local cullur = (enabledCustomWindows and judge ~= 0) and customOffsetToJudgecullur(dvt[i], customWindow.judgeWindows) or offsetToJudgeColor(dvt[i], tst[judge])
local cullur = (enabledCustomWindows and judge ~= 0) and customOffsetToJudgeColor(dvt[i], customWindow.judgeWindows) or offsetToJudgeColor(dvt[i], tst[judge])
if math.abs(y) > plotHeight/2 then
y = fitY(fit)
end
Expand Down Expand Up @@ -223,4 +223,4 @@ o[#o+1] = LoadFont("Common Normal")..{
end
}

return o
return o

0 comments on commit b404c6e

Please sign in to comment.