Skip to content
This repository was archived by the owner on Mar 15, 2025. It is now read-only.

Commit 7b45c0f

Browse files
committed
run formatter rq
1 parent c7aba1d commit 7b45c0f

28 files changed

Lines changed: 110 additions & 96 deletions

source/Main.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class Main extends Sprite
115115
bitmapFPS = kec.backend.ImageOutline.renderImage(fpsCounter, 1, 0x000000, true);
116116
bitmapFPS.smoothing = true;
117117
#end
118-
118+
119119
game.framerate = 60;
120120
var fard:FlxGame = new FlxGame(game.width, game.height, game.initialState, #if (flixel < "5.0.0") game.zoom, #end game.framerate, game.framerate,
121121
game.skipSplash, game.startFullscreen);

source/kec/backend/Controls.hx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ enum abstract Action(String) to String from String
5151
var CHEAT = "cheat";
5252
}
5353
#end
54+
5455
enum Device
5556
{
5657
Keys;
@@ -111,7 +112,7 @@ class Controls extends FlxActionSet
111112
#else
112113
var byName:Map<String, FlxActionDigital> = new Map<String, FlxActionDigital>();
113114
#end
114-
115+
115116
public var keyboardScheme = KeyboardScheme.None;
116117

117118
public var UP(get, never):Bool;

source/kec/backend/Debug.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package kec.backend;
2+
23
import lime.app.Application;
34
import flixel.system.debug.log.LogStyle;
45
import flixel.system.debug.watch.Tracker.TrackerProfile;

source/kec/backend/Discord.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package kec.backend;
2+
23
#if FEATURE_DISCORD
34
import hxdiscord_rpc.Discord as RichPresence;
45
import hxdiscord_rpc.Types;

source/kec/backend/ImageOutline.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,4 @@ class ImageOutline
160160
blue = (blue.length < 2) ? "0" + blue : blue;
161161
return (red + green + blue).toUpperCase();
162162
}
163-
}
163+
}

source/kec/backend/KadeEngineData.hx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package kec.backend;
2+
23
import lime.app.Application;
34
import openfl.Lib;
45

@@ -296,7 +297,7 @@ class KadeEngineData
296297
FlxG.save.data.developer = false;
297298

298299
if (FlxG.save.data.maxRatings == null)
299-
FlxG.save.data.maxRatings = 4;
300+
FlxG.save.data.maxRatings = 4;
300301

301302
FlxSprite.defaultAntialiasing = FlxG.save.data.antialiasing;
302303
FlxObject.defaultMoves = false;

source/kec/backend/KeyBinds.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package kec.backend;
2+
23
import flixel.input.FlxInput;
34
import flixel.input.actions.FlxAction;
45
import flixel.input.actions.FlxActionInput;

source/kec/backend/Options.hx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2521,6 +2521,7 @@ class BackgroundsOption extends Option
25212521
class HitSoundOption extends Option
25222522
{
25232523
var daHitSound:FlxSound = new FlxSound();
2524+
25242525
public function new(desc:String)
25252526
{
25262527
super();
@@ -2559,14 +2560,14 @@ class HitSoundOption extends Option
25592560

25602561
public override function getValue():String
25612562
{
2562-
25632563
return "Hitsound Style: < " + HitSounds.getSoundByID(FlxG.save.data.hitSound) + " >";
25642564
}
25652565
}
25662566

25672567
class HitSoundVolume extends Option
25682568
{
25692569
var daHitSound:FlxSound = new FlxSound();
2570+
25702571
public function new(desc:String)
25712572
{
25722573
super();
@@ -2624,7 +2625,7 @@ class HitSoundVolume extends Option
26242625
daHitSound.loadEmbedded(Paths.sound('hitsounds/${HitSounds.getSoundByID(FlxG.save.data.hitSound).toLowerCase()}', 'shared'));
26252626
daHitSound.volume = FlxG.save.data.hitVolume;
26262627
daHitSound.play();
2627-
}
2628+
}
26282629

26292630
return true;
26302631
}

source/kec/backend/chart/Song.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package kec.backend.chart;
2+
23
import kec.backend.chart.Section.SwagSection;
34

45
class Event

source/kec/backend/lua/LuaClass.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package kec.backend.lua;
2+
23
#if FEATURE_LUAMODCHART
34
import llua.Convert;
45
import llua.Lua;

0 commit comments

Comments
 (0)