Skip to content
#

file-format

Here are 362 public repositories matching this topic...

pedro-javierf
pedro-javierf commented Jan 9, 2021

Describe the bug
Method Decompress() at ARM9.java does this:

public static byte[] Decompress(byte[] Data, int _start_ModuleParamsOffset)
	{
		if (IOUtil.ReadU32LE(Data, _start_ModuleParamsOffset + 0x14) == 0) 
			return Data;//Not Compressed!
		
		byte[] Result = CRT0.MIi_UncompressBackward(Data);
		IOUtil.WriteU32LE(Result, _start_ModuleParamsOffset + 0x14, 0); //sets 4 byt
enhancement good first issue

Improve this page

Add a description, image, and links to the file-format topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the file-format topic, visit your repo's landing page and select "manage topics."

Learn more