Skip to content

Commit

Permalink
re add loading
Browse files Browse the repository at this point in the history
  • Loading branch information
TRSF-sonicman committed May 1, 2022
1 parent eb784e0 commit f9b7d45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Main.hx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Main extends Sprite
{
var gameWidth:Int = 1280; // Width of the game in pixels (might be less / more in actual pixels depending on your zoom).
var gameHeight:Int = 720; // Height of the game in pixels (might be less / more in actual pixels depending on your zoom).
var initialState:Class<FlxState> = TitleState; // The FlxState the game starts with.
var initialState:Class<FlxState> = Cache; // The FlxState the game starts with.
var zoom:Float = -1; // If -1, zoom is automatically calculated to fit the window dimensions.
var framerate:Int = 60; // How many frames per second the game should run at.
var skipSplash:Bool = true; // Whether to skip the flixel splash screen that appears in release mode.
Expand Down Expand Up @@ -66,7 +66,7 @@ class Main extends Sprite
}

#if !debug
initialState = TitleState;
initialState = Cache;
#end

ClientPrefs.loadDefaultKeys();
Expand Down

0 comments on commit f9b7d45

Please sign in to comment.