From 1cc645b5e445aa6eb73bd0e38fd05f204bead9cd Mon Sep 17 00:00:00 2001 From: sum2012 Date: Mon, 25 Jul 2016 20:21:53 +0800 Subject: [PATCH] Revert "Temporarily disable PMP video for non-windows" This revert https://github.com/hrydgard/ppsspp/pull/8693/commits/5e20ba18114c4c37c15e144598952d370e81edfe --- Core/HLE/sceMpeg.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Core/HLE/sceMpeg.cpp b/Core/HLE/sceMpeg.cpp index add9a722a5..31cfe03683 100644 --- a/Core/HLE/sceMpeg.cpp +++ b/Core/HLE/sceMpeg.cpp @@ -2294,7 +2294,6 @@ 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; @@ -2309,11 +2308,6 @@ 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; }