attempt to fix issue 465

This commit is contained in:
AJ Kelly
2011-08-21 22:13:19 -05:00
parent 744fa8c26a
commit c7c622cfc2
@@ -74,15 +74,16 @@ else
end
end
local playerOffset = 36 -- was 28
local displayTwoPlayers = Def.ActorFrame{
-- manual bpm displays
LoadFont("BPMDisplay", "bpm")..{
Name="DisplayP1";
InitCommand=cmd(x,-28;zoom,0.6;shadowlength,1);
InitCommand=cmd(x,-playerOffset;zoom,0.6;shadowlength,1);
};
LoadFont("BPMDisplay", "bpm")..{
Name="DisplayP2";
InitCommand=cmd(x,28;zoom,0.6;shadowlength,1);
InitCommand=cmd(x,playerOffset;zoom,0.6;shadowlength,1);
};
};