Skip to content
Snippets Groups Projects
Commit c99f47d8 authored by Lioncash's avatar Lioncash
Browse files

loader: Make MakeMagic constexpr

parent b83e9572
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ enum class ResultStatus {
ErrorEncrypted,
};
static inline u32 MakeMagic(char a, char b, char c, char d) {
constexpr u32 MakeMagic(char a, char b, char c, char d) {
return a | b << 8 | c << 16 | d << 24;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment