Skip to content

Commit b7761d4

Browse files
EliteMasterEricninjamuffin99
authored andcommitted
Disable FEATURE_RESULTS_DEBUG on release builds by default.
1 parent 1d5d0dd commit b7761d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project.hxp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,10 +505,10 @@ class Project extends HXProject {
505505
FEATURE_PARTIAL_SOUNDS.apply(this, true);
506506
FEATURE_VIDEO_PLAYBACK.apply(this, true);
507507
FEATURE_STAGE_EDITOR.apply(this, true);
508-
FEATURE_RESULTS_DEBUG.apply(this, true);
509508

510509
// Should be true on debug builds or if GITHUB_BUILD is enabled.
511510
FEATURE_DEBUG_FUNCTIONS.apply(this, isDebug() || GITHUB_BUILD.isEnabled(this));
511+
FEATURE_RESULTS_DEBUG.apply(this, isDebug() || GITHUB_BUILD.isEnabled(this));
512512

513513
// Got a lot of complains about this being turned off by default on some builds.
514514
// TODO: Look into ways to optimize logging (maybe by using a thread pool?)

0 commit comments

Comments
 (0)