diff options
| -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 { | |||
| 167 | 167 | ||
| 168 | bool IsValidDate() const { | 168 | bool IsValidDate() const { |
| 169 | const bool is_day_valid = GetDay() > 0 && GetDay() < 32; | 169 | const bool is_day_valid = GetDay() > 0 && GetDay() < 32; |
| 170 | const bool is_month_valid = GetMonth() >= 0 && GetMonth() < 13; | 170 | const bool is_month_valid = GetMonth() > 0 && GetMonth() < 13; |
| 171 | const bool is_year_valid = GetYear() >= 2000; | 171 | const bool is_year_valid = GetYear() >= 2000; |
| 172 | return is_year_valid && is_month_valid && is_day_valid; | 172 | return is_year_valid && is_month_valid && is_day_valid; |
| 173 | } | 173 | } |