diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-08-05 04:16:29 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-08-05 04:16:29 +0200 |
commit | 7b39215c8a0842fff38f8edb2b8ee67038eb96c5 (patch) | |
tree | d262849f58174f2d3a23546f2f51feb8e5bc3566 | |
parent | nvdec: Implement VA-API hardware video acceleration (#6713) (diff) | |
download | yuzu-7b39215c8a0842fff38f8edb2b8ee67038eb96c5.tar yuzu-7b39215c8a0842fff38f8edb2b8ee67038eb96c5.tar.gz yuzu-7b39215c8a0842fff38f8edb2b8ee67038eb96c5.tar.bz2 yuzu-7b39215c8a0842fff38f8edb2b8ee67038eb96c5.tar.lz yuzu-7b39215c8a0842fff38f8edb2b8ee67038eb96c5.tar.xz yuzu-7b39215c8a0842fff38f8edb2b8ee67038eb96c5.tar.zst yuzu-7b39215c8a0842fff38f8edb2b8ee67038eb96c5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/hex_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/hex_util.h b/src/common/hex_util.h index f5f9e4507..5e9b6ef8b 100644 --- a/src/common/hex_util.h +++ b/src/common/hex_util.h @@ -61,7 +61,7 @@ template <typename ContiguousContainer> return out; } -[[nodiscard]] constexpr std::array<u8, 16> AsArray(const char (&data)[17]) { +[[nodiscard]] constexpr std::array<u8, 16> AsArray(const char (&data)[33]) { return HexStringToArray<16>(data); } |