mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-12-27 23:46:45 +00:00
null + macro things?
This commit is contained in:
parent
8ef380e0b2
commit
554c7bb31d
2
assets
2
assets
|
@ -1 +1 @@
|
|||
Subproject commit d2a2327bb1eb04a1aa07d7340201f42217829005
|
||||
Subproject commit 830127dcc38e4f0fc35b162bd0f696a77679b046
|
|
@ -139,6 +139,8 @@ class ChartEditorNotificationHandler
|
|||
|
||||
return notif;
|
||||
#else
|
||||
// TODO: Implement notifications on Mac OS OR... make sure the null is handled properly on mac?
|
||||
return null;
|
||||
trace('WARNING: Notifications are not supported on Mac OS.');
|
||||
#end
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package funkin.util.macro;
|
||||
|
||||
#if !display
|
||||
#if macro
|
||||
class FlxMacro
|
||||
{
|
||||
|
@ -33,3 +34,4 @@ class FlxMacro
|
|||
}
|
||||
}
|
||||
#end
|
||||
#end
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package funkin.util.macro;
|
||||
|
||||
#if !display
|
||||
#if (debug || FORCE_DEBUG_VERSION)
|
||||
class GitCommit
|
||||
{
|
||||
|
@ -65,3 +66,4 @@ class GitCommit
|
|||
}
|
||||
}
|
||||
#end
|
||||
#end
|
||||
|
|
Loading…
Reference in a new issue