OSD: Correct region2 parameter offset.

This commit is contained in:
refractionpcsx2 2022-09-01 23:19:16 +01:00
parent 8ca5cb18a3
commit 5fc73f87f4
1 changed files with 1 additions and 1 deletions

View File

@ -979,7 +979,7 @@ void SYSCALL()
cdvdReadLanguageParams(params);
u32 osdconf2 = (u32)((params[3] & 0x78) << 1); // Daylight Savings, 24hr clock, Date format
u32 osdconf2 = (((u32)params[3] & 0x78) << 9); // Daylight Savings, 24hr clock, Date format
memWrite32(memaddr, osdconf2);
return;