post-merge fixes
This commit is contained in:
parent
6ca1f6e800
commit
8725e0b31c
|
@ -1561,20 +1561,20 @@ public class Game extends ComplexOpsuState {
|
||||||
float hueshift = 360f / rdata.size();
|
float hueshift = 360f / rdata.size();
|
||||||
float hue = 180;
|
float hue = 180;
|
||||||
|
|
||||||
int idx = 0;
|
int replayidx = 0;
|
||||||
for (ReplayData d : rdata) {
|
for (ReplayData d : rdata) {
|
||||||
final Color c = new Color(java.awt.Color.HSBtoRGB((hue) / 360f, .7f, 1.0f));
|
final Color c = new Color(java.awt.Color.HSBtoRGB((hue) / 360f, .7f, 1.0f));
|
||||||
final ReplayCursor cursor = new ReplayCursor(c);
|
final ReplayCursor cursor = new ReplayCursor(c);
|
||||||
replays[idx] = new ReplayPlayback(
|
replays[replayidx] = new ReplayPlayback(
|
||||||
d.replay,
|
d.replay,
|
||||||
d.hitdata,
|
d.hitdata,
|
||||||
c,
|
c,
|
||||||
cursor
|
cursor
|
||||||
);
|
);
|
||||||
replayCursors.playbacks[idx] = replays[idx];
|
replayCursors.playbacks[replayidx] = replays[replayidx];
|
||||||
|
|
||||||
hue += hueshift;
|
hue += hueshift;
|
||||||
idx++;
|
replayidx++;
|
||||||
}
|
}
|
||||||
|
|
||||||
displayContainer.drawCursor = false;
|
displayContainer.drawCursor = false;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user