From 5482ad8143fc10912aa46dec730aa7325c579fae Mon Sep 17 00:00:00 2001 From: sum2012 Date: Tue, 8 Apr 2014 20:52:05 +0800 Subject: [PATCH] Remove comment --- Core/HLE/sceMp4.cpp | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/Core/HLE/sceMp4.cpp b/Core/HLE/sceMp4.cpp index 635e7643cd..427bead109 100644 --- a/Core/HLE/sceMp4.cpp +++ b/Core/HLE/sceMp4.cpp @@ -165,23 +165,7 @@ u32 sceAacInit(u32 parameters, u32 unknown1, u32 unknown2, u32 unknown3) return ERROR_AAC_INVALID_PARAMETER; } - /* - To Do: Need translate the below code from JPCSP - int id = -1; - for (int i = 0; i < ids.length; i++) { - if (!ids[i].isInit()) { - id = i; - break; - } - } - if (id < 0) { - return SceKernelErrors.ERROR_AAC_NO_MORE_FREE_ID; - } - - ids[id].init(bufferAddr, bufferSize, outputAddr, outputSize); - - return id; - */ + //To Do return 0; }