mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-29 11:32:45 +00:00
This was SVN commit r10846.
This commit is contained in:
@@ -161,7 +161,7 @@ void CDebugSerializer::PutRaw(const char* name, const u8* data, size_t len)
|
||||
char buf[4];
|
||||
for (size_t i = 0; i < len; ++i)
|
||||
{
|
||||
sprintf_s(buf, ARRAY_SIZE(buf), " %02x", data[i]);
|
||||
sprintf_s(buf, ARRAY_SIZE(buf), " %02x", (unsigned int)data[i]);
|
||||
m_Stream << buf;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user