diff --git a/Core/HLE/sceUsbCam.cpp b/Core/HLE/sceUsbCam.cpp index 3510985130..50f1147b05 100644 --- a/Core/HLE/sceUsbCam.cpp +++ b/Core/HLE/sceUsbCam.cpp @@ -155,7 +155,6 @@ static int sceUsbCamReadVideoFrameBlocking(u32 bufAddr, u32 size) { } static int sceUsbCamReadVideoFrame(u32 bufAddr, u32 size) { - ERROR_LOG(HLE, "%s", winCamera->getErrorMessage().c_str()); std::lock_guard lock(videoBufferMutex); u32 transferSize = std::min(videoBufferLength, size); if (Memory::IsValidRange(bufAddr, size)) {