mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-19 21:33:06 +00:00
More fixes to github actions
This commit is contained in:
parent
9ec3f7aaac
commit
c1684b218e
10
Project.xml
10
Project.xml
|
@ -156,7 +156,6 @@
|
||||||
<haxedef name="HXCPP_CHECK_POINTER" />
|
<haxedef name="HXCPP_CHECK_POINTER" />
|
||||||
<haxedef name="HXCPP_STACK_LINE" />
|
<haxedef name="HXCPP_STACK_LINE" />
|
||||||
<haxedef name="HXCPP_STACK_TRACE" />
|
<haxedef name="HXCPP_STACK_TRACE" />
|
||||||
<haxedef name="openfl-enable-handle-error" />
|
|
||||||
<!-- This macro allows addition of new functionality to existing Flixel. -->
|
<!-- This macro allows addition of new functionality to existing Flixel. -->
|
||||||
<haxeflag name="--macro" value="addMetadata('@:build(funkin.util.macro.FlxMacro.buildFlxBasic())', 'flixel.FlxBasic')" />
|
<haxeflag name="--macro" value="addMetadata('@:build(funkin.util.macro.FlxMacro.buildFlxBasic())', 'flixel.FlxBasic')" />
|
||||||
<!--Place custom nodes like icons here (higher priority to override the HaxeFlixel icon)-->
|
<!--Place custom nodes like icons here (higher priority to override the HaxeFlixel icon)-->
|
||||||
|
@ -196,6 +195,15 @@
|
||||||
<haxedef name="REDIRECT_ASSETS_FOLDER" />
|
<haxedef name="REDIRECT_ASSETS_FOLDER" />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<!--
|
||||||
|
This flag enables the popup/crashlog error handler.
|
||||||
|
However, it also messes with breakpoints on some platforms.
|
||||||
|
-->
|
||||||
|
<haxedef name="openfl-enable-handle-error" />
|
||||||
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<!-- TODO: Add a flag to Github Actions to turn this on or something. -->
|
<!-- TODO: Add a flag to Github Actions to turn this on or something. -->
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package funkin.util.macro;
|
package funkin.util.macro;
|
||||||
|
|
||||||
#if debug
|
#if (debug || FORCE_DEBUG_VERSION)
|
||||||
class GitCommit
|
class GitCommit
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue