diff options
author | Liam <byteslice@airmail.cc> | 2022-10-07 12:52:28 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-10-07 12:52:28 +0200 |
commit | 9574429c5f726794ac96a61326f36fdcd61a2232 (patch) | |
tree | 376fb8e5b650d4b00e64752d7623acb21dd6c7f8 /src/core/hle/service | |
parent | Merge pull request #6142 from lat9nq/prog_meta_ref_bind_address (diff) | |
download | yuzu-9574429c5f726794ac96a61326f36fdcd61a2232.tar yuzu-9574429c5f726794ac96a61326f36fdcd61a2232.tar.gz yuzu-9574429c5f726794ac96a61326f36fdcd61a2232.tar.bz2 yuzu-9574429c5f726794ac96a61326f36fdcd61a2232.tar.lz yuzu-9574429c5f726794ac96a61326f36fdcd61a2232.tar.xz yuzu-9574429c5f726794ac96a61326f36fdcd61a2232.tar.zst yuzu-9574429c5f726794ac96a61326f36fdcd61a2232.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/nfp/nfp_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nfp/nfp_types.h b/src/core/hle/service/nfp/nfp_types.h index 867ea2f36..c09f9ddb6 100644 --- a/src/core/hle/service/nfp/nfp_types.h +++ b/src/core/hle/service/nfp/nfp_types.h @@ -167,7 +167,7 @@ struct AmiiboDate { bool IsValidDate() const { const bool is_day_valid = GetDay() > 0 && GetDay() < 32; - const bool is_month_valid = GetMonth() >= 0 && GetMonth() < 13; + const bool is_month_valid = GetMonth() > 0 && GetMonth() < 13; const bool is_year_valid = GetYear() >= 2000; return is_year_valid && is_month_valid && is_day_valid; } |