From b92c0538b67863d41b96918dafa416fb76ef562a Mon Sep 17 00:00:00 2001 From: sum2012 Date: Fri, 20 Mar 2015 21:36:31 +0800 Subject: [PATCH] Remove blank --- Core/HLE/sceAtrac.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/HLE/sceAtrac.cpp b/Core/HLE/sceAtrac.cpp index 1818d21688..f57269b952 100644 --- a/Core/HLE/sceAtrac.cpp +++ b/Core/HLE/sceAtrac.cpp @@ -1056,7 +1056,7 @@ static u32 sceAtracGetChannel(int atracID, u32 channelAddr) { } else if (!atrac->data_buf) { ERROR_LOG(ME, "sceAtracGetChannel(%i, %08x): no data", atracID, channelAddr); return ATRAC_ERROR_NO_DATA; - } else { + } else { if (Memory::IsValidAddress(channelAddr)){ Memory::Write_U32(atrac->atracChannels, channelAddr); DEBUG_LOG(ME, "sceAtracGetChannel(%i, %08x[%d])", atracID, channelAddr, atrac->atracChannels); @@ -1233,7 +1233,7 @@ static u32 sceAtracGetSoundSample(int atracID, u32 outEndSampleAddr, u32 outLoop } else if (!atrac->data_buf) { ERROR_LOG(ME, "sceAtracGetSoundSample(%i, %08x, %08x, %08x): no data", atracID, outEndSampleAddr, outLoopStartSampleAddr, outLoopEndSampleAddr); return ATRAC_ERROR_NO_DATA; - } else { + } else { if (Memory::IsValidAddress(outEndSampleAddr)) Memory::Write_U32(atrac->endSample - 1, outEndSampleAddr); if (Memory::IsValidAddress(outLoopStartSampleAddr))