mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
9999 is actually the maximum year as verified on my PSP
This commit is contained in:
parent
de0a161be6
commit
5d0c88334b
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@ int sceRtcCheckValid(u32 datePtr)
|
|||
{
|
||||
ScePspDateTime pt;
|
||||
Memory::ReadStruct(datePtr, &pt);
|
||||
if (pt.year < 1 || pt.year > 9999) //what is the real maximum?
|
||||
if (pt.year < 1 || pt.year > 9999)
|
||||
{
|
||||
ret = PSP_TIME_INVALID_YEAR;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue