Skip to content

Commit 2e54ff1

Browse files
TechnikTilCrusherNotDrip
authored andcommitted
Display Server Fixes
Signed-off-by: TechnikTil <techniktil@tilnotdrip.org>
1 parent 43b129c commit 2e54ff1

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

project.hxp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class Project extends HXProject
128128
// The second parameter is the default value unless overridden!
129129
FUNKIN_DISCORD_RPC.apply(this, platformType == DESKTOP && haxedefs.get('cpp')); // Will be enabled if its on desktop (windows, linux, mac)!
130130
FUNKIN_DOX_GENERATION.apply(this, false); // Will always be false unless you wanna make a documentation website.
131-
FUNKIN_GIT_DETAILS.apply(this, isGitInitialized()); // Only show details when this is a git repository.
131+
FUNKIN_GIT_DETAILS.apply(this, command != 'display' && isGitInitialized()); // Only show details when this is a git repository.
132132
FUNKIN_ASSETS_FORWARDING.apply(this, platformType == DESKTOP && debug);
133133
}
134134

src/funkin/macros/GitDefines.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package funkin.macros;
22

3-
#if (!display && FUNKIN_GIT_DETAILS)
3+
#if FUNKIN_GIT_DETAILS
44
import haxe.macro.Context;
55
import haxe.macro.Expr;
66

src/funkin/macros/ZProperty.hx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package funkin.macros;
22

3-
#if !display
43
#if macro
54
import haxe.macro.Context;
65
import haxe.macro.Expr;
@@ -59,4 +58,3 @@ class ZProperty
5958
}
6059
}
6160
#end
62-
#end

0 commit comments

Comments
 (0)