mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Temporarily disable PMP video for non-windows
This commit is contained in:
parent
9a11cfb7a3
commit
5e20ba1811
1 changed files with 6 additions and 0 deletions
|
@ -2223,6 +2223,7 @@ void Register_sceMpeg()
|
|||
// p pointing to a SceMpegLLI structure consists of video frame blocks.
|
||||
static u32 sceMpegbase_BEA18F91(u32 p)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
pmp_videoSource = p;
|
||||
pmp_nBlocks = 0;
|
||||
SceMpegLLI lli;
|
||||
|
@ -2237,6 +2238,11 @@ static u32 sceMpegbase_BEA18F91(u32 p)
|
|||
}
|
||||
|
||||
DEBUG_LOG(ME, "sceMpegbase_BEA18F91(%08x), received %d block(s)", pmp_videoSource, pmp_nBlocks);
|
||||
#else
|
||||
// Temporarily disable PMP video for non-windows
|
||||
// See issue #8603
|
||||
WARN_LOG(ME, "Temporarily disable PMP video for non-windows");
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue