From d5bf485708ae5a31392f1a9ba500436be4a0e7d5 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Mon, 18 Sep 2023 00:23:24 +0200 Subject: [PATCH] early-access version 3878 --- README.md | 2 +- src/core/hle/service/mii/mii_types.h | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 003c8144d..3c5102f2e 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3877. +This is the source code for early-access 3878. ## Legal Notice diff --git a/src/core/hle/service/mii/mii_types.h b/src/core/hle/service/mii/mii_types.h index 95476f745..611ff4f81 100755 --- 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 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++;