Fixed showFutureCursorPath & Keypress combination

This commit is contained in:
nise.moe 2024-03-03 18:27:44 +01:00
parent 965239e69d
commit d0e2b3ee88

View File

@ -222,6 +222,10 @@ export class Drawer {
if(OsuRenderer.settings.showKeyPress) { if(OsuRenderer.settings.showKeyPress) {
if(!OsuRenderer.settings.showFutureCursorPath && lastFrame.time > OsuRenderer.time) {
continue;
}
if (lastFrame.button.mouseLeft1 || lastFrame.button.mouseLeft2) { if (lastFrame.button.mouseLeft1 || lastFrame.button.mouseLeft2) {
Drawer.p.stroke("#BB6BD9"); Drawer.p.stroke("#BB6BD9");
Drawer.p.circle(lastFrame.position.x, lastFrame.position.y, 15); Drawer.p.circle(lastFrame.position.x, lastFrame.position.y, 15);