mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-24 11:46:58 -04:00
strat: use util::FourCC where relevant
This commit is contained in:
parent
145ee8fcc8
commit
38f942adf5
5 changed files with 10 additions and 10 deletions
|
@ -21,8 +21,8 @@ namespace ams::creport {
|
|||
namespace {
|
||||
|
||||
/* Convenience definitions. */
|
||||
constexpr u32 LibnxThreadVarMagic = 0x21545624; /* !TV$ */
|
||||
constexpr u32 DumpedThreadInfoMagic = 0x32495444; /* DTI2 */
|
||||
constexpr u32 LibnxThreadVarMagic = util::FourCC<'!','T','V','$'>::Code;
|
||||
constexpr u32 DumpedThreadInfoMagic = util::FourCC<'D','T','I','2'>::Code;
|
||||
|
||||
/* Types. */
|
||||
template<typename T>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue