helps to git add before git commit (nw)

This commit is contained in:
Vas Crabb 2019-11-25 03:24:12 +11:00
parent d2f3d02908
commit 9525108f78

View File

@ -14,7 +14,7 @@ std::uint8_t g_mame_new_prefill_byte(0xcd);
void *operator new(std::size_t n)
{
void *const result(std::malloc(sz));
void *const result(std::malloc(n));
if (ptr)
{
std::fill_n(reinterpret_cast<std::uint8_t volatile *>(ptr), n, g_mame_new_prefill_byte);