mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-25 13:31:39 +00:00
Fix serialization of most components
This was SVN commit r8449.
This commit is contained in:
@@ -85,12 +85,17 @@ void CDebugSerializer::PutNumber(const char* name, uint8_t value)
|
||||
m_Stream << INDENT << name << ": " << (int)value << "\n";
|
||||
}
|
||||
|
||||
void CDebugSerializer::PutNumber(const char* name, int32_t value)
|
||||
void CDebugSerializer::PutNumber(const char* name, int8_t value)
|
||||
{
|
||||
m_Stream << INDENT << name << ": " << (int)value << "\n";
|
||||
}
|
||||
|
||||
void CDebugSerializer::PutNumber(const char* name, uint32_t value)
|
||||
{
|
||||
m_Stream << INDENT << name << ": " << value << "\n";
|
||||
}
|
||||
|
||||
void CDebugSerializer::PutNumber(const char* name, uint32_t value)
|
||||
void CDebugSerializer::PutNumber(const char* name, int32_t value)
|
||||
{
|
||||
m_Stream << INDENT << name << ": " << value << "\n";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user