mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 15:44:56 +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);
|
||||
}
|
||||
};
|
||||
|
||||
2
MathLib
2
MathLib
Submodule MathLib updated: 60be8cd299...5270d232ab
2
NODLib
2
NODLib
Submodule NODLib updated: 83b96b1bc2...799e2cb6ee
2
hecl
2
hecl
Submodule hecl updated: 8c33dbbd3a...b6d1ab64e3
2
libBoo
2
libBoo
Submodule libBoo updated: 49771b0e15...de51c2dcc5
Reference in New Issue
Block a user