Remove the TWL dev launcher patch as it became unnecessary

This commit is contained in:
Aurora
2016-09-03 19:11:44 +02:00
parent a2bca96d47
commit bd992fca15
7 changed files with 13 additions and 189 deletions

View File

@@ -142,12 +142,12 @@ static void loadTitleCodeSection(u64 progId, u8 *code, u32 size)
if(R_SUCCEEDED(ret))
{
u64 fileSize, total;
u64 fileSize;
ret = IFile_GetSize(&file, &fileSize);
if(R_SUCCEEDED(ret) && fileSize <= size)
{
u64 total;
ret = IFile_Read(&file, &total, code, fileSize);
IFile_Close(&file);
}