From 950e404442c3549c8bd9e7f293e749795e647ad5 Mon Sep 17 00:00:00 2001 From: raven02 Date: Tue, 22 Apr 2014 14:31:34 +0800 Subject: [PATCH] Fix a typo --- Core/HLE/sceAudio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/sceAudio.cpp b/Core/HLE/sceAudio.cpp index 7c574eb7d81e..f23a0f906043 100644 --- a/Core/HLE/sceAudio.cpp +++ b/Core/HLE/sceAudio.cpp @@ -412,7 +412,7 @@ u32 sceAudioSRCChReserve(u32 sampleCount, u32 freq, u32 format) { u32 sceAudioSRCChRelease() { if (!chans[PSP_AUDIO_CHANNEL_SRC].reserved) { - ERROR_LOG(SCEAUDIO, "sceAudioSRCChRelease() - channel already reserved "); + ERROR_LOG(SCEAUDIO, "sceAudioSRCChRelease() - channel not reserved "); return SCE_ERROR_AUDIO_CHANNEL_NOT_RESERVED; } DEBUG_LOG(SCEAUDIO, "sceAudioSRCChRelease()");