Fixed macro bug for pointer

Before: 0x0000000x0AFEF598

Now: 0x0AFEF598
This commit is contained in:
RadWolfie 2019-02-05 02:01:53 -06:00
parent c29eabb75e
commit 3d1de11a9f
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ hexstring32(std::basic_ostream<_CharT, _Traits>&os)
#define LOGRENDER(Type) \
LOGRENDER_HEADER_BY_PTR(Type) \
{ \
os << hexstring32 << (void*)(value); \
os << hexstring32 << reinterpret_cast<uint32_t>(value); \
if (value) \
os << " -> "#Type"* {" << *value << "}"; \
\