diff --git a/README.md b/README.md index 0bcdcdb..966e60b 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ same goes for *Lua Scripts*, comment out or delete the line with `LUA_ALLOWED`, * Hackx2 - Automated VersionShit * not-weuz - haha i took his winning icon support coding * dombomb64 - Multi-Sheet Characters +* Burgerballs - Accurate Playback Rate Speed Song Length _____________________________________ # Features diff --git a/art/icon16.png b/art/icon16.png index ab4851b..f4c8446 100644 Binary files a/art/icon16.png and b/art/icon16.png differ diff --git a/art/icon32.png b/art/icon32.png index 2664274..40fd474 100644 Binary files a/art/icon32.png and b/art/icon32.png differ diff --git a/art/icon64.png b/art/icon64.png index bd7685f..6e12a51 100644 Binary files a/art/icon64.png and b/art/icon64.png differ diff --git a/art/iconOG.png b/art/iconOG.png index 00f542d..5efea7f 100644 Binary files a/art/iconOG.png and b/art/iconOG.png differ diff --git a/art/iconOGandroid.png b/art/iconOGandroid.png new file mode 100644 index 0000000..4b40708 Binary files /dev/null and b/art/iconOGandroid.png differ diff --git a/assets/preload/images/menumod/Splash.png b/assets/preload/images/menumod/Splash.png index 853d2a8..8ceb96e 100644 Binary files a/assets/preload/images/menumod/Splash.png and b/assets/preload/images/menumod/Splash.png differ diff --git a/assets/preload/images/menumod/menuBG.png b/assets/preload/images/menumod/menuBG.png index 7d10b9b..aa94958 100644 Binary files a/assets/preload/images/menumod/menuBG.png and b/assets/preload/images/menumod/menuBG.png differ diff --git a/assets/preload/music/bro.ogg.sfk b/assets/preload/music/bro.ogg.sfk deleted file mode 100644 index bb7f8f5..0000000 Binary files a/assets/preload/music/bro.ogg.sfk and /dev/null differ diff --git a/source/MainMenuState.hx b/source/MainMenuState.hx index 3e4b9ce..fee8d68 100644 --- a/source/MainMenuState.hx +++ b/source/MainMenuState.hx @@ -123,7 +123,7 @@ class MainMenuState extends MusicBeatState } - var versionShit:FlxText = new FlxText(12, FlxG.height - 84, 0, "FNF: The Grand Red Destruction v6.3.2", 12); + var versionShit:FlxText = new FlxText(12, FlxG.height - 84, 0, "FNF: The Grand Red Destruction v6.3.3", 12); versionShit.scrollFactor.set(); versionShit.setFormat("VCR OSD Mono", 16, FlxColor.WHITE, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK); add(versionShit); diff --git a/source/PlayState.hx b/source/PlayState.hx index 7a0ef9d..17fd4d1 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3080,7 +3080,7 @@ class PlayState extends MusicBeatState var songCalc:Float = (songLength - curTime); if(ClientPrefs.timeBarType == 'Time Elapsed') songCalc = curTime; - var secondsTotal:Int = Math.floor(songCalc / 1000); + var secondsTotal:Int = Math.floor((songCalc/playbackRate) / 1000); if(secondsTotal < 0) secondsTotal = 0; if(ClientPrefs.timeBarType != 'Song Name') diff --git a/source/StoryMenuState.hx b/source/StoryMenuState.hx index 259832f..83693ed 100644 --- a/source/StoryMenuState.hx +++ b/source/StoryMenuState.hx @@ -200,7 +200,7 @@ class StoryMenuState extends MusicBeatState lerpScore = Math.floor(FlxMath.lerp(lerpScore, intendedScore, CoolUtil.boundTo(elapsed * 30, 0, 1))); if(Math.abs(intendedScore - lerpScore) < 10) lerpScore = intendedScore; - scoreText.text = "WEEK SCORE:" + lerpScore; + scoreText.text = "LEVEL SCORE:" + lerpScore; // FlxG.watch.addQuick('font', scoreText.font); diff --git a/source/TitleState.hx b/source/TitleState.hx index a2d45fb..ff3940b 100644 --- a/source/TitleState.hx +++ b/source/TitleState.hx @@ -650,11 +650,7 @@ class TitleState extends MusicBeatState // credTextShit.text = 'In association \nwith'; // credTextShit.screenCenter(); case 6: - #if PSYCH_WATERMARKS - createCoolText(['Mod', 'made by'], -40); - #else createCoolText(['Mod', 'made by'], -40); - #end case 8: addMoreText('TheUnknownKoala4545', -40); // credTextShit.text += '\nNewgrounds';