diff --git a/CHANGELOG.md b/CHANGELOG.md
index c650752ab..cc5d7fa84 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,11 +4,18 @@ All notable changes will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [Unreleased]
+### Changed
+- ASSET LOADING OVERHAUL, WAY FASTER LOAD TIMES ON WEB!!! (THANKS TO GEOKURELI WOKE KING)
+### Fixed
+- That one random note on Bopeebo
+
 ## [0.2.7.1] - 2021-02-14
 ### Added
 - Easter eggs
 - readme's in desktop versions of the game
 ### Changed
+
 - New icons, old one was placeholder since October woops!
 - Made the transitions between the story mode levels more seamless.
 - Offset of the Newgrounds logo on boot screen.
diff --git a/source/ControlsSubState.hx b/source/ControlsSubState.hx
index 236d4a646..f35d74cc8 100644
--- a/source/ControlsSubState.hx
+++ b/source/ControlsSubState.hx
@@ -8,8 +8,5 @@ class ControlsSubState extends FlxSubState
 	public function new()
 	{
 		super();
-
-		var bullshit = new FlxSprite().makeGraphic(100, 100);
-		add(bullshit);
 	}
 }