mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix history mode black screen in Saint Seiya Omega
This commit is contained in:
parent
c4ab043b97
commit
f3402b258a
1 changed files with 2 additions and 1 deletions
|
@ -477,7 +477,8 @@ u32 scePsmfQueryStreamOffset(u32 bufferAddr, u32 offsetAddr)
|
|||
if (Memory::IsValidAddress(offsetAddr)) {
|
||||
Memory::Write_U32(0, offsetAddr);
|
||||
}
|
||||
return 0;
|
||||
// return 0 breaks history mode in Saint Seiya Omega
|
||||
return 1;
|
||||
}
|
||||
|
||||
u32 scePsmfQueryStreamSize(u32 bufferAddr, u32 sizeAddr)
|
||||
|
|
Loading…
Add table
Reference in a new issue