Page 1 of 1

NCAA 14 (Xbox 360) XPR Textures

Posted: Thu Dec 28, 2017 8:56 pm
by maizeblue11
I have a couple of textures I want to view in Noesis and they are coming out like this:

Image

Here are the files:

https://nofile.io/f/MTQ8gM1EEYv/00000000.xpr
https://nofile.io/f/8WJUFcJvR5y/00000001.xpr

I will appreciate anyone who can help me with this.

Re: NCAA 14 (Xbox 360) XPR Textures

Posted: Thu Dec 28, 2017 10:20 pm
by Acewell
like i said on Zenhax, its just big-endian dxt3 untiled (:
change line 52 in the xpr script from this:

Code: Select all

            data = rapi.imageUntile360DXT(rapi.swapEndianArray(data, 2), imgWidth, imgHeight, 16)
to this:

Code: Select all

            data = rapi.swapEndianArray(data, 2)

Re: NCAA 14 (Xbox 360) XPR Textures

Posted: Thu Dec 28, 2017 11:25 pm
by maizeblue11
AceWell wrote:like i said on Zenhax, its just big-endian dxt3 untiled (:
change line 52 in the xpr script from this:

Code: Select all

            data = rapi.imageUntile360DXT(rapi.swapEndianArray(data, 2), imgWidth, imgHeight, 16)
to this:

Code: Select all

            data = rapi.swapEndianArray(data, 2)
Sorry dude. I completely missed that. Thanks!