diff options
author | 2019-11-25 03:19:22 +1100 | |
---|---|---|
committer | 2019-11-25 03:20:08 +1100 | |
commit | d2f3d029081122bd21146275317de88d69302e89 (patch) | |
tree | 8d7248a0248bb8952c95e620f2d4aad6ecfdb38b /scripts/src | |
parent | 29fa035d484daf24be42ca50e57257cc639b7165 (diff) |
pre-fill things allocated with operator new with 0xcd in debug builds (value can be changed by setting global g_mame_new_prefill_byte with a debugger) - this is gonna hurt performance, but it will help catch issues exposed when we remove pre-clearing before constructing devices
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/lib.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/src/lib.lua b/scripts/src/lib.lua index 28fb3b7c9a6..b66b41d2313 100644 --- a/scripts/src/lib.lua +++ b/scripts/src/lib.lua @@ -47,6 +47,7 @@ project "utils" MAME_DIR .. "src/lib/util/client_https.hpp", MAME_DIR .. "src/lib/util/client_ws.hpp", MAME_DIR .. "src/lib/util/client_wss.hpp", + MAME_DIR .. "src/lib/util/corealloc.cpp", MAME_DIR .. "src/lib/util/corealloc.h", MAME_DIR .. "src/lib/util/corefile.cpp", MAME_DIR .. "src/lib/util/corefile.h", |