Skip to content

Commit

Permalink
fix stupidity
Browse files Browse the repository at this point in the history
  • Loading branch information
konekowo committed Sep 14, 2024
1 parent 945646a commit 933e632
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Settings/impl/Graphics/UIScale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import {RangeSetting} from "../../SettingType/RangeSetting";
import {SettingsCategory} from "../../Setting";

export class UIScale extends RangeSetting {
public readonly maxValue = 0.8;
public readonly minValue = 1.6;
public readonly maxValue = 1.6;
public readonly minValue = 0.8;
public readonly increment = 0.1;
public readonly defaultValue = 1;

public constructor() {
super({name: "UI scaling", category: SettingsCategory.Graphics});
this.value = this.defaultValue;
}
}
}

0 comments on commit 933e632

Please sign in to comment.