Skip to content

Commit

Permalink
fix:(results): Use >= in _getMapValue
Browse files Browse the repository at this point in the history
  • Loading branch information
CaedenPH authored Sep 3, 2024
1 parent 53adaf1 commit 0bd08fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class CogSpeedGraphicsHandler {
if (inverse) {
if (value < Number.parseInt(key)) v = value_;
} else {
if (value > Number.parseInt(key)) v = value_;
if (value >= Number.parseInt(key)) v = value_;
}
}
if (v == null) {
Expand Down

0 comments on commit 0bd08fa

Please sign in to comment.