Skip to content

Commit 1823524

Browse files
committed
a
1 parent 75766ce commit 1823524

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/managers/FreeplayManager.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class FreeplayManager {
9090
return instance = new APFreeplayManager(ensureLoaded);
9191
}
9292
case false:
93-
if (instance != null && Std.isOfType(instance, FreeplayManager)) {
93+
if (instance != null && instance.isType(FreeplayManager, true)) {
9494
trace("Using existing FreeplayManager instance.");
9595
if (ensureLoaded) instance.reloadFreeplay(true);
9696
return instance;

source/states/MainMenuState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ enum MainMenuColumn {
2121
class MainMenuState extends MusicBeatState
2222
{
2323
public static var psychEngineVersion:String = '1.0.4'; // This is also used for Discord RPC
24-
public static var mixtapeEngineVersion:String = '4.8.2'; // this is used for Discord RPC
24+
public static var mixtapeEngineVersion:String = '4.9.25'; // this is used for Discord RPC
2525
public static var curSelected:Int = 0;
2626
public static var curColumn:MainMenuColumn = CENTER;
2727
private var archButton:PsychUIButton;

source/yutautil/CollectionUtils.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ class CollectionUtils
689689
}
690690
}
691691

692-
public static function isType(ob:Dynamic, type:Class, ?NoSupers:Bool)
692+
public static function isType(ob:Dynamic, type:Class<Dynamic>, ?NoSupers:Bool)
693693
{
694694
var c = type;
695695
var o = ob;

0 commit comments

Comments
 (0)