diff options
author | 2016-03-30 11:03:03 +0200 | |
---|---|---|
committer | 2016-03-30 11:03:03 +0200 | |
commit | f67cb62dbcd3f6158e3c9187b1bd8719c8c5a955 (patch) | |
tree | 143d6268d31460dc8c9dded48d652b6925dda32a | |
parent | 3c7e256b45f7c7ba3c21139a513ac5cab140292d (diff) |
Fix VS build (it was reverse logic then others) (nw)mame0172
-rw-r--r-- | scripts/genie.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 61617630d06..9b2e86151ce 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -628,7 +628,7 @@ if _OPTIONS["with-system-jpeg"]~=nil then } end -if _OPTIONS["with-system-flac"]~=nil then +if not _OPTIONS["with-system-flac"]~=nil then defines { "FLAC__NO_DLL", } |