mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 23:47:42 +00:00
added inttypes and updated submodules for utf8
This commit is contained in:
@@ -87,7 +87,7 @@ public:
|
||||
inline std::string toString() const
|
||||
{
|
||||
char buf[17];
|
||||
snprintf(buf, 17, "%016llX", m_id);
|
||||
snprintf(buf, 17, "%016" PRIX64, m_id);
|
||||
return std::string(buf);
|
||||
}
|
||||
};
|
||||
@@ -143,7 +143,7 @@ public:
|
||||
inline std::string toString() const
|
||||
{
|
||||
char buf[33];
|
||||
snprintf(buf, 33, "%016llX%016llX", m_id[0], m_id[1]);
|
||||
snprintf(buf, 33, "%016" PRIX64 "%016" PRIX64, m_id[0], m_id[1]);
|
||||
return std::string(buf);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user