diff options
author | 2024-10-26 15:17:31 -0400 | |
---|---|---|
committer | 2024-10-26 15:17:31 -0400 | |
commit | f89e137c57d0dd38d48fdae5ff7ee83fe56c9a2e (patch) | |
tree | 791cadeea4ddf8994b2b5fdd4709bc0e20e80e7d /scripts | |
parent | c4206a6867be8b49b2b20cb8fe4231f96807312f (diff) |
scripts/3rdparty.lua: Enabled -Wno-tautological-compare for BGFX in order to evaluate turning it off for MAME. [R. Belmont]
cpu/es5510: Removed hack that never could possibly have worked, comparing a uint8_t to a 24-bit constant. [R. Belmont]
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/src/3rdparty.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 9a86eed9fc8..6851cc085c5 100755 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -1511,6 +1511,7 @@ end "-Wno-unused-but-set-variable", "-Wno-unused-function", "-Wno-unused-variable", + "-Wno-tautological-compare", } configuration { } |