Skip to content

Commit

Permalink
fix last
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed Nov 30, 2024
1 parent 19bdd5a commit 517022a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kiss/Prelude.hx
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ class Prelude {
public static function convertToHScript(kissStr:String):String {
var unsupportedMessage = "Can't convert Kiss to HScript on this target.";

#if ((!sys && !hxnodejs) || frontend)
#if (!macro && (!sys && !hxnodejs) || frontend)
throw unsupportedMessage;
#else

Expand Down Expand Up @@ -725,7 +725,7 @@ class Prelude {
#end
}

#if ((sys || hxnodejs) && !frontend)
#if (!macro && (sys || hxnodejs) && !frontend)
public static function userHome() {
var msysHome = Sys.getEnv("MSYSHOME");
var home = Sys.getEnv("HOME");
Expand Down

0 comments on commit 517022a

Please sign in to comment.