diff options
author | Lioncash <mathew1800@gmail.com> | 2015-02-03 14:07:03 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-02-03 14:14:42 +0100 |
commit | 676daef3c7b1d2dc4ad178d7d799c994383b2512 (patch) | |
tree | 3c7d78bb2e4666cb7a11cfb7f57f61b8710ca07d /src/core/loader/loader.h | |
parent | Merge pull request #523 from yuriks/kernel-lifetime5 (diff) | |
download | yuzu-676daef3c7b1d2dc4ad178d7d799c994383b2512.tar yuzu-676daef3c7b1d2dc4ad178d7d799c994383b2512.tar.gz yuzu-676daef3c7b1d2dc4ad178d7d799c994383b2512.tar.bz2 yuzu-676daef3c7b1d2dc4ad178d7d799c994383b2512.tar.lz yuzu-676daef3c7b1d2dc4ad178d7d799c994383b2512.tar.xz yuzu-676daef3c7b1d2dc4ad178d7d799c994383b2512.tar.zst yuzu-676daef3c7b1d2dc4ad178d7d799c994383b2512.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 7456b019b..3510c6b28 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -38,7 +38,7 @@ enum class ResultStatus { ErrorMemoryAllocationFailed, }; -static u32 MakeMagic(char a, char b, char c, char d) { +static inline u32 MakeMagic(char a, char b, char c, char d) { return a | b << 8 | c << 16 | d << 24; } |