hide the replay key overlay background bars

This commit is contained in:
yugecin 2017-12-22 12:34:05 +01:00
parent 085cd719fa
commit 22d2b0be86

View File

@ -721,10 +721,10 @@ public class Game extends ComplexOpsuState {
UI.draw(g);
int i = 0;
g.setColor(new Color(0.2f, 0.2f, 0.2f));
g.fillRect(0, 0, ReplayPlayback.SQSIZE * 2, displayContainer.height);
g.setColor(Color.black);
g.fillRect(ReplayPlayback.SQSIZE * 2, 0, ReplayPlayback.SQSIZE * 2, displayContainer.height);
//g.setColor(new Color(0.2f, 0.2f, 0.2f));
//g.fillRect(0, 0, ReplayPlayback.SQSIZE * 2, displayContainer.height);
//g.setColor(Color.black);
//g.fillRect(ReplayPlayback.SQSIZE * 2, 0, ReplayPlayback.SQSIZE * 2, displayContainer.height);
for (ReplayPlayback replayPlayback : replays) {
replayPlayback.render(beatmap, hitResultOffset, displayContainer.renderDelta, g, i++, trackPosition);
}