diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-09-17 22:27:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-17 22:27:44 +0200 |
commit | e18ff5cb4e1495ee700486e7b1a7d15bc3a1d6af (patch) | |
tree | 49b2f189ca12a0b65169794ddd072f4cb1a734ff | |
parent | Merge pull request #11524 from t895/signing-ci (diff) | |
parent | mii_types: Remove null terminator check (diff) | |
download | yuzu-e18ff5cb4e1495ee700486e7b1a7d15bc3a1d6af.tar yuzu-e18ff5cb4e1495ee700486e7b1a7d15bc3a1d6af.tar.gz yuzu-e18ff5cb4e1495ee700486e7b1a7d15bc3a1d6af.tar.bz2 yuzu-e18ff5cb4e1495ee700486e7b1a7d15bc3a1d6af.tar.lz yuzu-e18ff5cb4e1495ee700486e7b1a7d15bc3a1d6af.tar.xz yuzu-e18ff5cb4e1495ee700486e7b1a7d15bc3a1d6af.tar.zst yuzu-e18ff5cb4e1495ee700486e7b1a7d15bc3a1d6af.zip |
-rw-r--r-- | src/core/hle/service/mii/mii_types.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/hle/service/mii/mii_types.h b/src/core/hle/service/mii/mii_types.h index 95476f745..611ff4f81 100644 --- a/src/core/hle/service/mii/mii_types.h +++ b/src/core/hle/service/mii/mii_types.h @@ -606,15 +606,12 @@ struct Nickname { static constexpr std::size_t MaxNameSize = 10; std::array<char16_t, MaxNameSize> data; - // Checks for null, non-zero terminated or dirty strings + // Checks for null or dirty strings bool IsValid() const { if (data[0] == 0) { return false; } - if (data[MaxNameSize] != 0) { - return false; - } std::size_t index = 1; while (data[index] != 0) { index++; |