mirror of https://github.com/PCSX2/pcsx2.git
OSD: Correct region2 parameter offset.
This commit is contained in:
parent
8ca5cb18a3
commit
5fc73f87f4
|
@ -979,7 +979,7 @@ void SYSCALL()
|
||||||
|
|
||||||
cdvdReadLanguageParams(params);
|
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);
|
memWrite32(memaddr, osdconf2);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue