Skip to content

Commit

Permalink
oml
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed May 18, 2024
1 parent 7dbadec commit 0b010f1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion source/funkin/save/Save.hx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class Save
framerate: #if web 60 #else flixel.math.FlxMath.maxInt(60, lime.app.Application.current.window.displayMode.refreshRate) #end,
flashingLights: true,
zoomCamera: true,
centeredStrums: false,
centerStrums: false,
coloredHealthBar: false,
debugDisplay: false,
autoPause: true,
Expand Down Expand Up @@ -831,6 +831,7 @@ typedef SaveScoreData =

typedef SaveScoreTallyData =
{
var killer:Int;
var sick:Int;
var good:Int;
var bad:Int;
Expand Down
6 changes: 3 additions & 3 deletions source/funkin/ui/options/PreferencesMenu.hx
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ class PreferencesMenu extends Page
descTextBG.antialiasing = false;
descTextBG.active = false;

descText = new FlxText(0, 0, 0, "Ass Text!!!", 26);
descText = new FlxText(0, 0, 0, "No description", 26);
descText.scrollFactor.set();
descText.font = "VCR OSD Mono";
descText.font = Paths.font("vcr.ttf");
descText.alignment = CENTER;
descText.setBorderStyle(OUTLINE, FlxColor.BLACK, 2);
// descText.antialiasing = false;
Expand Down Expand Up @@ -265,7 +265,7 @@ class CounterPreferenceItem extends FlxText
public function new(x:Float, y:Float, defaultValue:Int = 0, minValue:Int = 0, maxValue:Int = 1, onChange:Int->Void, step:Int = 1)
{
super(x, y, 0, "", 42);
this.font = "VCR OSD Mono";
this.font = Paths.font("vcr.ttf");
this.alignment = RIGHT;
this.setBorderStyle(OUTLINE, FlxColor.BLACK, 3);
// this.antialiasing = false;
Expand Down

0 comments on commit 0b010f1

Please sign in to comment.