Fixed Linux debug build

This commit is contained in:
Blixibon
2022-10-21 10:20:01 -05:00
parent d93a2f0b17
commit e2569f6657
3 changed files with 7 additions and 7 deletions

View File

@@ -1841,7 +1841,7 @@ public:
scopemap_t *scopeMap = m_HookList.Element(i);
char *szEvent = m_HookList.Key(i);
Msg( "%s [%x]\n", szEvent, (void*)scopeMap );
Msg( "%s [%p]\n", szEvent, (void*)scopeMap );
Msg( "{\n" );
FOR_EACH_MAP_PTR( scopeMap, j )
@@ -1849,7 +1849,7 @@ public:
HScriptRaw hScope = scopeMap->Key(j);
contextmap_t *contextMap = scopeMap->Element(j);
Msg( "\t(0x%X) [%x]\n", hScope, (void*)contextMap );
Msg( "\t(0x%X) [%p]\n", hScope, (void*)contextMap );
Msg( "\t{\n" );
FOR_EACH_VEC_PTR( contextMap, k )