Skip to content

Commit

Permalink
welp there goes my insanity
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed May 21, 2024
1 parent 49beb63 commit 06c8a68
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 26 deletions.
10 changes: 5 additions & 5 deletions hmm.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
"ref": "17e0d59fdbc2b6283a5c0e4df41f1c7f27b71c49",
"url": "https://github.com/FunkinCrew/flxanimate"
},
{
"name": "hxvlc",
"type": "haxelib",
"version": "1.5.3"
},
{
"name": "format",
"type": "haxelib",
Expand Down Expand Up @@ -75,11 +80,6 @@
"type": "haxelib",
"version": "2.5.0"
},
{
"name": "hxvlc",
"type": "haxelib",
"version": "1.5.2"
},
{
"name": "hxcpp",
"type": "haxelib",
Expand Down
2 changes: 1 addition & 1 deletion source/Prebuild.hx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Prebuild extends CommandLine
{
saveBuildTime();

prettyPrint('Building Funkin\'++.') // Check if your Haxe version is outdated.
prettyPrint('Building Funkin\'++.'); // Check if your Haxe version is outdated.

var theProcess:Process = new Process('haxe --version');
theProcess.exitCode(true);
Expand Down
19 changes: 0 additions & 19 deletions source/funkin/save/Save.hx
Original file line number Diff line number Diff line change
Expand Up @@ -905,25 +905,6 @@ typedef SaveDataOptions =
*/
var songPositionBar:Bool;

/**
* Controls where will combo render.
* @default `false`
*/
public static var comboHUD(get, set):Bool;

static function get_comboHUD():Bool
{
return Save?.instance?.options?.comboHUD;
}

static function set_comboHUD(value:Bool):Bool
{
var save:Save = Save.instance;
save.options.comboHUD = value;
save.flush();
return value;
}

/**
* If enabled, an FPS and memory counter will be displayed even if this is not a debug build.
* @default `true`
Expand Down
2 changes: 1 addition & 1 deletion source/funkin/ui/options/PreferencesMenu.hx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class PreferencesMenu extends Page
createPrefItemCheckbox('Downscroll', 'Enable to make notes move downwards', function(value:Bool):Void {
Preferences.downscroll = value;
}, Preferences.downscroll);
createPrefItemCheckbox('Show Judgerments', 'Self explanatory', function(value:Bool):Void {
createPrefItemCheckbox('Show Judgements', 'Self explanatory', function(value:Bool):Void {
Preferences.comboHUD = value;
}, Preferences.comboHUD);
createPrefItemCheckbox('Ghost Tapping', 'Enable to let you spam notes', function(value:Bool):Void {
Expand Down

0 comments on commit 06c8a68

Please sign in to comment.