Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/funkin/backend/system/Flags.hx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class Flags {
public static var DEFAULT_BEATS_PER_MEASURE:Int = 4;
public static var DEFAULT_STEPS_PER_BEAT:Int = 4;
public static var DEFAULT_LOOP_TIME:Float = 0.0;

public static var ICONS_AUTOPOSITION:Bool = true;
public static var SUPPORTED_CHART_RUNTIME_FORMATS:Array<String> = ["Legacy", "Psych Engine"];
public static var SUPPORTED_CHART_FORMATS:Array<String> = ["BaseGame"];

Expand Down
2 changes: 1 addition & 1 deletion source/funkin/game/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ class PlayState extends MusicBeatState

// Make icons appear in the correct spot during cutscenes
healthBar.update(0);
if (updateIconPositions != null)
if (updateIconPositions != null && Flags.ICONS_AUTOPOSITION)
updateIconPositions();

__updateNote_event = EventManager.get(NoteUpdateEvent);
Expand Down